程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVALive 4329 Ping pong

UVALive 4329 Ping pong

編輯:C++入門知識

樹狀數組。考慮ai(從0開始,則i左邊共i個,右邊n-i-1個),左邊有x個比他大的,i-x個比他小的,右邊有y個比他大的,n-i-1-y個比他大的。交叉乘一下就得到了以ai為裁判的比賽總數。把所有人都枚舉一遍,加在一起就是答案,會超int。   如何才能知道ai左邊有多少比他小的呢?假如aj<ai且j<i,用另一個數組b來標記這個數有沒有出現過,那麼b[aj] = 1;這樣,比ai小的數的個數,就是b的前綴和。

 
#include<algorithm>  
#include<iostream>  
#include<cstring>  
#include<cstdio>  
#include<vector>  
#include<string>  
#include<queue>  
#include<cmath>  
///LOOP  
#define REP(i, n) for(int i = 0; i < n; i++)  
#define FF(i, a, b) for(int i = a; i < b; i++)  
#define FFF(i, a, b) for(int i = a; i <= b; i++)  
#define FD(i, a, b) for(int i = a - 1; i >= b; i--)  
#define FDD(i, a, b) for(int i = a; i >= b; i--)  
///INPUT  
#define RI(n) scanf("%d", &n)  
#define RII(n, m) scanf("%d%d", &n, &m)  
#define RIII(n, m, k) scanf("%d%d%d", &n, &m, &k)  
#define RIV(n, m, k, p) scanf("%d%d%d%d", &n, &m, &k, &p)  
#define RV(n, m, k, p, q) scanf("%d%d%d%d%d", &n, &m, &k, &p, &q)  
#define RFI(n) scanf("%lf", &n)  
#define RFII(n, m) scanf("%lf%lf", &n, &m)  
#define RFIII(n, m, k) scanf("%lf%lf%lf", &n, &m, &k)  
#define RFIV(n, m, k, p) scanf("%lf%lf%lf%lf", &n, &m, &k, &p)  
#define RS(s) scanf("%s", s)  
///OUTPUT  
#define PN printf("\n")  
#define PI(n) printf("%d\n", n)  
#define PIS(n) printf("%d ", n)  
#define PS(s) printf("%s\n", s)  
#define PSS(s) printf("%s ", n)  
///OTHER  
#define PB(x) push_back(x)  
#define CLR(a, b) memset(a, b, sizeof(a))  
#define CPY(a, b) memcpy(a, b, sizeof(b))  
#define display(A, n, m) {REP(i, n){REP(j, m)PIS(A[i][j]);PN;}}  
  
using namespace std;  
typedef long long LL;  
typedef pair<int, int> P;  
const int MOD = 100000000;  
const int INFI = 1e9 * 2;  
const LL LINFI = 1e17;  
const double eps = 1e-6;  
const double pi = acos(-1.0);  
const int N = 111111;  
const int M = 22;  
const int move[8][2] = {0, 1, 0, -1, 1, 0, -1, 0, 1, 1, 1, -1, -1, 1, -1, -1};  
  
int a[N], b[N], c[N], n;  
  
void update(int x)  
{  
    while(x <= N)  
    {  
        b[x]++;  
        x += x & (-x);  
    }  
}  
  
int sum(int x)  
{  
    LL s = 0;  
    while(x)  
    {  
        s += b[x];  
        x -= x & (-x);  
    }  
    return s;  
}  
  
int main()  
{  
    //freopen("input.txt", "r", stdin);  
    //freopen("output.txt", "w", stdout);  
  
    int t, k;  
    LL ans;  
    RI(t);  
    while(t--)  
    {  
        RI(n);  
        CLR(b, 0);  
        REP(i, n)  
        {  
            RI(a[i]);  
            c[i] = sum(a[i]);  
            update(a[i]);  
        }  
        CLR(b, 0);  
        ans = 0;  
        FD(i, n, 0)  
        {  
            k = sum(a[i]);  
            ans += LL(c[i]) * LL(n - i - 1 - k) + LL(i - c[i]) * LL(k);  
            update(a[i]);  
        }  
        printf("%lld\n", ans);  
    }  
    return 0;  
}  

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved