結果

問題 No.833 かっこいい電車
ユーザー chocoruskchocorusk
提出日時 2019-05-24 22:24:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 1,148 ms
コンパイル使用メモリ 100,300 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-07-02 03:42:59
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 103 ms
5,376 KB
testcase_11 AC 132 ms
5,376 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 105 ms
5,376 KB
testcase_15 AC 54 ms
5,376 KB
testcase_16 AC 40 ms
5,376 KB
testcase_17 AC 44 ms
5,376 KB
testcase_18 AC 124 ms
5,376 KB
testcase_19 AC 40 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 111 ms
5,376 KB
testcase_22 AC 69 ms
5,376 KB
testcase_23 AC 47 ms
5,376 KB
testcase_24 AC 68 ms
5,376 KB
testcase_25 AC 119 ms
5,376 KB
testcase_26 AC 48 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 64 ms
5,376 KB
testcase_29 AC 73 ms
5,376 KB
testcase_30 AC 67 ms
5,760 KB
testcase_31 AC 134 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
ll a[100010];
struct BIT{
    vector<ll> bit;
    int size;
    BIT(int n):size(n), bit(n+1, 0){}
    ll sum(int i){
        ll s=0;
        while(i>0){
            s+=bit[i];
            i-=(i&(-i));
        }
        return s;
    }
    void add(int i, ll x){
        while(i<=size){
            bit[i]+=x;
            i+=(i&(-i));
        }
    }
};
int main()
{
    int n, q; cin>>n>>q;
    BIT b(n), c(n);
    bool nuo[100010];
    fill(nuo, nuo+n, 1);
    for(int i=1; i<n; i++) c.add(i, 1);
    for(int i=1; i<=n; i++){
        cin>>a[i];
        b.add(i, a[i]);
    }
    for(int t=0; t<q; t++){
        int u, x; cin>>u>>x;
        if(u==1){
            if(nuo[x]){
                nuo[x]=0;
                c.add(x, -1);
            }
        }else if(u==2){
            if(!nuo[x]){
                nuo[x]=1;
                c.add(x, 1);
            }
        }else if(u==3){
            b.add(x, 1);
        }else{
            int l=1, r=x;
            while(l!=r){
                int m=(l+r)/2;
                if(c.sum(m-1)==c.sum(x-1)) r=m;
                else l=m+1;
            }
            int l0=l;
            l=x, r=n;
            while(l!=r){
                int m=(l+r+1)/2;
                if(c.sum(x-1)==c.sum(m-1)) l=m;
                else r=m-1;
            }
            int r0=r;
            cout<<b.sum(r0)-b.sum(l0-1)<<endl;
        }
    }
    return 0;
}
0