結果

問題 No.833 かっこいい電車
ユーザー 沙耶花沙耶花
提出日時 2020-12-09 22:21:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 209,668 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-09-19 04:58:28
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
6,144 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 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 77 ms
6,272 KB
testcase_11 AC 101 ms
7,808 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 19 ms
5,376 KB
testcase_14 AC 86 ms
7,936 KB
testcase_15 AC 40 ms
6,016 KB
testcase_16 AC 35 ms
7,040 KB
testcase_17 AC 22 ms
5,376 KB
testcase_18 AC 87 ms
6,528 KB
testcase_19 AC 32 ms
6,400 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 57 ms
8,448 KB
testcase_23 AC 38 ms
6,784 KB
testcase_24 AC 58 ms
7,936 KB
testcase_25 AC 83 ms
6,144 KB
testcase_26 AC 40 ms
7,040 KB
testcase_27 AC 64 ms
6,400 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 48 ms
5,760 KB
testcase_30 AC 78 ms
9,088 KB
testcase_31 AC 47 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/fenwicktree>
using namespace atcoder;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 10000000

int main(){
	
	int N,Q;
	cin>>N>>Q;
	
	map<int,int> mp;
	rep(i,N)mp[i] = i+1;
	
	fenwick_tree<long long> F(N);
	rep(i,N){
		int A;
		scanf("%d",&A);
		F.add(i,A);
	}
	
	rep(i,Q){
		int t,x;
		scanf("%d %d",&t,&x);
		x--;
		auto it = mp.upper_bound(x);
		it--;
		//cout<<(it->first)<<','<<(it->second)<<endl;
		if(t==1){
			if(it->second-1==x){
				int temp = it->first;
				it = mp.erase(it);
				int x = temp;
				int y = it->second;
				mp.erase(it);
				mp[x] = y;
			}
		}
		if(t==2){
			if(it->second-1!=x){
				int a = it->first;
				int b = x+1;
				int c = x+1;
				int d = it->second;
				mp.erase(it);
				mp[a] = b;
				mp[c] = d;
			}
		}
		if(t==3){
			F.add(x,1);
		}
		if(t==4){
			int l = it->first;
			int r = it->second;
			printf("%lld\n",F.sum(l,r));
		}
	}
	
	
    return 0;
}
0