POJ 3928 amp; HDU 2492 Ping pong(树阵评价倒数)
生活随笔
收集整理的這篇文章主要介紹了
POJ 3928 amp; HDU 2492 Ping pong(树阵评价倒数)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
主題鏈接:
PKU:http://poj.org/problem?id=3928
HDU:http://acm.hdu.edu.cn/showproblem.php?pid=2492
Description
N(3<=N<=20000) ping pong players live along a west-east street(consider the street as a line segment). Each player has a unique skill rank. To improve their skill rank, they often compete with each other. If two players want to compete, they must choose a referee among other ping pong players and hold the game in the referee's house. For some reason, the contestants can't choose a referee whose skill rank is higher or lower than both of theirs. The contestants have to walk to the referee's house, and because they are lazy, they want to make their total walking distance no more than the distance between their houses. Of course all players live in different houses and the position of their houses are all different. If the referee or any of the two contestants is different, we call two games different. Now is the problem: how many different games can be held in this ping pong street?Input
The first line of the input contains an integer T(1<=T<=20), indicating the number of test cases, followed by T lines each of which describes a test case.?Every test case consists of N + 1 integers. The first integer is N, the number of players. Then N distinct integers a1, a2 ... aN follow, indicating the skill rank of each player, in the order of west to east. (1 <= ai <= 100000, i = 1 ... N).
Output
For each test case, output a single line contains an integer, the total number of different games.?Sample Input
1 3 1 2 3Sample Output
1Source
Beijing 2008PS: 分別求每個數的左右兩邊比它大的個數和小的個數!最后再交叉相乘就可以!
代碼例如以下:
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int maxn=100017; int n; int a[maxn], c[maxn]; int leftMax[maxn], leftMin[maxn]; int rightMax[maxn], rightMin[maxn]; typedef __int64 LL;int Lowbit(int x) //2^k {return x&(-x); }void update(int i, int x)//i點增量為x {while(i <= maxn)//注意此處{c[i] += x;i += Lowbit(i);} } int sum(int x)//區間求和 [1,x] {int sum=0;while(x>0){sum+=c[x];x-=Lowbit(x);}return sum; }int main() {int t;int n;scanf("%d",&t);while(t--){scanf("%d",&n);for(int i = 1; i <= n; i++){scanf("%d",&a[i]);}memset(c,0,sizeof(c));for(int i = 1; i <= n; i++){leftMin[i] = sum(a[i]);//計算左邊小的個數leftMax[i] = i-leftMin[i]-1;//計算左邊大的個數update(a[i],1);}memset(c,0,sizeof(c));//再次清零for(int i = n,j = 1; i >= 1; i--,j++){rightMin[i] = sum(a[i]);rightMax[i] = j-rightMin[i]-1;update(a[i],1);}LL ans = 0;for(int i = 1; i <= n; i++){ans+=leftMax[i]*rightMin[i] + leftMin[i]*rightMax[i];//交叉相乘取和}printf("%I64d\n",ans);}return 0; }
版權聲明:本文博客原創文章,博客,未經同意,不得轉載。
轉載于:https://www.cnblogs.com/mengfanrong/p/4707824.html
總結
以上是生活随笔為你收集整理的POJ 3928 amp; HDU 2492 Ping pong(树阵评价倒数)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 推荐两本移动开发挺火的书
- 下一篇: PHP操作MongoDB GridFS