結果

問題 No.404 部分門松列
ユーザー btkbtk
提出日時 2016-07-27 17:11:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,545 ms / 2,000 ms
コード長 1,610 bytes
コンパイル時間 2,697 ms
コンパイル使用メモリ 179,252 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-06-28 17:03:26
合計ジャッジ時間 24,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 705 ms
27,264 KB
testcase_14 AC 963 ms
35,200 KB
testcase_15 AC 596 ms
24,064 KB
testcase_16 AC 385 ms
17,408 KB
testcase_17 AC 988 ms
36,224 KB
testcase_18 AC 649 ms
26,368 KB
testcase_19 AC 273 ms
14,720 KB
testcase_20 AC 937 ms
33,024 KB
testcase_21 AC 836 ms
29,696 KB
testcase_22 AC 824 ms
31,744 KB
testcase_23 AC 1,066 ms
36,736 KB
testcase_24 AC 1,144 ms
36,736 KB
testcase_25 AC 1,545 ms
48,256 KB
testcase_26 AC 1,410 ms
43,008 KB
testcase_27 AC 548 ms
24,448 KB
testcase_28 AC 1,036 ms
37,504 KB
testcase_29 AC 965 ms
32,768 KB
testcase_30 AC 878 ms
31,360 KB
testcase_31 AC 284 ms
15,488 KB
testcase_32 AC 833 ms
32,000 KB
testcase_33 AC 1,126 ms
39,552 KB
testcase_34 AC 1,048 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

typedef long long LL;

struct I{
    I(){
        ios::sync_with_stdio(false);cin.tie(0);
    }
}cww;

namespace BIT_{
#define CNT 4
#define SZ 700000
    int cnt=0;
    LL mem[CNT][SZ];
}

class BIT{
private: LL *t;int n;
public:
    BIT(int n):t(BIT_::mem[BIT_::cnt++]),n(n){
        fill(t,t+n,0);
    }
    LL sum(int i){
        LL s=0;
        while(i>0){
            s+=t[i];
            i-=i&-i;
        }
        return s;
    }
    LL sum(int lb,int ub){
        return sum(ub)-sum(lb-1);
    }
    void add(int i,LL x){
        while(i<=n){
            t[i]+=x,i+=i&-i;
        }
    }
};


int main(){
    int N,Q;cin>>N;
    map<int,int> z;
    vector<int> a(N);
    for(auto &it:a){
        cin>>it;
        z[it]=0;
    }
    cin>>Q;
    vector<int> L(Q),H(Q);
    for(int i=0;i<Q;i++){
        cin>>L[i]>>H[i];
        z[L[i]]=z[H[i]]=0;
    }
    int Z=1;
    
    int LB=0;
    int UB=1e9+1;
    z[LB]=z[UB]=1;
    for(auto &it:z)it.second=Z++;
    LB=z[LB];
    UB=z[UB];
    for(auto &it:a)it=z[it];
    for(auto &it:L)it=z[it];
    for(auto &it:H)it=z[it];

    BIT res(Z),l(Z),r(Z),same(Z);
    for(auto &it:a)r.add(it,1);
    for(int i=0;i<N;i++){
        int v=a[i];
        
        same.add(v,-l.sum(v,v));
        r.add(v,-1);

        LL ans=0;
        ans+=l.sum(LB,v-1)*r.sum(LB,v-1)-same.sum(LB,v-1);
        ans+=l.sum(v+1,UB)*r.sum(v+1,UB)-same.sum(v+1,UB);
        res.add(v,ans);

        same.add(v,r.sum(v,v));
        l.add(v,1);
    }

    for(int i=0;i<Q;i++){
        cout<<res.sum(L[i],H[i])<<endl;
    }
    return 0;
}
0