結果

問題 No.833 かっこいい電車
ユーザー pockynypockyny
提出日時 2019-05-24 22:57:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 79,616 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-02 03:45:16
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
8,960 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 168 ms
9,344 KB
testcase_11 AC 233 ms
12,416 KB
testcase_12 AC 66 ms
7,040 KB
testcase_13 AC 41 ms
5,376 KB
testcase_14 AC 186 ms
12,416 KB
testcase_15 AC 90 ms
8,704 KB
testcase_16 AC 80 ms
10,496 KB
testcase_17 AC 51 ms
5,376 KB
testcase_18 AC 199 ms
9,728 KB
testcase_19 AC 75 ms
9,600 KB
testcase_20 AC 21 ms
5,760 KB
testcase_21 AC 150 ms
6,400 KB
testcase_22 AC 133 ms
13,440 KB
testcase_23 AC 85 ms
9,984 KB
testcase_24 AC 128 ms
12,672 KB
testcase_25 AC 190 ms
8,832 KB
testcase_26 AC 90 ms
10,624 KB
testcase_27 AC 139 ms
9,344 KB
testcase_28 AC 89 ms
6,272 KB
testcase_29 AC 114 ms
7,936 KB
testcase_30 AC 145 ms
14,464 KB
testcase_31 AC 156 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
using namespace std;
using ll = long long;
ll n,q,t[200010] = {};
set<int> l,r;
void built(){
	for(int i = n-1;i>0;i--){
		t[i] = t[i<<1] + t[i<<1|1];
	}
}

void update(ll p,ll a){
	for(t[p+=n] += a;p>1;p >>= 1){
		t[p>>1] = t[p] + t[p^1];
	}
}

ll query(int l, int r){
	ll sum = 0;
	for(l += n, r += n; l<r; l >>= 1,r >>= 1){
		if(l&1) sum += t[l++];
		if(r&1) sum += t[--r];
	}
	return sum;
}


int main(){
	int i;
	cin >> n >> q;
	for(i=0;i<n;i++){
		int a; cin >> a; t[i + n] = a;
		l.insert(-i); r.insert(i);
	}
	built();
	for(i=0;i<q;i++){
		int w,x;
		cin >> w >> x; x--;
		if(w==1){
			r.erase(x); l.erase(-(x + 1));
		}
		if(w==2){
			r.insert(x); l.insert(-(x + 1));
		}
		if(w==3){
			update(x,1);
		}
		if(w==4){
			int le = *l.lower_bound(-x);
			int ri = *r.lower_bound(x);
			cout << query(-le,ri + 1) << endl;
		}
	}
}
	
0