結果

問題 No.833 かっこいい電車
ユーザー ShibuyapShibuyap
提出日時 2020-01-27 17:53:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,980 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 167,564 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-14 12:01:43
合計ジャッジ時間 6,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 100 ms
5,376 KB
testcase_11 AC 128 ms
5,376 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 101 ms
5,504 KB
testcase_15 AC 53 ms
5,376 KB
testcase_16 AC 40 ms
5,376 KB
testcase_17 AC 44 ms
5,376 KB
testcase_18 AC 122 ms
5,376 KB
testcase_19 AC 40 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 105 ms
5,376 KB
testcase_22 AC 66 ms
5,760 KB
testcase_23 AC 46 ms
5,376 KB
testcase_24 AC 66 ms
5,504 KB
testcase_25 AC 118 ms
5,376 KB
testcase_26 AC 47 ms
5,376 KB
testcase_27 AC 82 ms
5,376 KB
testcase_28 AC 64 ms
5,376 KB
testcase_29 AC 72 ms
5,376 KB
testcase_30 AC 68 ms
5,888 KB
testcase_31 AC 136 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}

// long long version
const int MAX_N = 300005;
ll bit[MAX_N+1][2];
int nn = MAX_N; // 1-index

void adds(int a, ll w, int z){
    for(int x = a; x <= nn; x += x & -x) bit[x][z] += w;
}
ll sums(int a, int z){ // bit[1,a]の和を返す.
    ll ret = 0;
    for(int x = a; x > 0; x -= x & -x) ret += bit[x][z];  
    return ret;
}

int main() {
    int n, q;
    cin >> n >> q;

    ll a[n+1] = {};
    srep(i,1,n+1)cin >> a[i];

    srep(i,1,n+1){
        adds(i, 1, 0);
        adds(i, a[i], 1);
    }

    rep(loop, q){
        int query, x;
        cin >> query >> x;
        if(query == 1){
            if(sums(x, 0) != sums(x+1, 0)){
                adds(x+1, -1, 0);
            }
        }
        if(query == 2){
            if(sums(x, 0) == sums(x+1, 0)){
                adds(x+1, 1, 0);
            }
        }
        if(query == 3){
            adds(x, 1, 1);
        }
        if(query == 4){
            ll tmp = sums(x, 0);
            int left, right;
            int l = 1, r = x;
            while(l < r){
                int m = (l + r) / 2;
                if(sums(m, 0) == tmp){
                    r = m;
                }else{
                    l = m + 1;
                }
            }
            left = l;
            l = x, r = n;
            while(l < r){
                int m = (l + r) / 2 + 1;
                if(sums(m, 0) == tmp){
                    l = m;
                }else{
                    r = m - 1;
                }
            }
            right = l;
            ll ans = sums(right, 1);
            if(left > 1){
                ans -= sums(left - 1, 1);
            }
            cout << ans << endl;
        }
    }


    return 0;
}
 
 
0