結果

問題 No.1705 Mode of long array
ユーザー Drice27149Drice27149
提出日時 2021-10-08 23:01:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 3,000 ms
コード長 811 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 53,500 KB
実行使用メモリ 9,432 KB
最終ジャッジ日時 2024-07-23 06:22:04
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 42 ms
6,940 KB
testcase_14 AC 30 ms
6,944 KB
testcase_15 AC 29 ms
6,944 KB
testcase_16 AC 37 ms
6,944 KB
testcase_17 AC 27 ms
6,944 KB
testcase_18 AC 21 ms
6,940 KB
testcase_19 AC 40 ms
6,940 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 52 ms
8,980 KB
testcase_23 AC 35 ms
6,940 KB
testcase_24 AC 34 ms
6,940 KB
testcase_25 AC 34 ms
6,944 KB
testcase_26 AC 33 ms
6,940 KB
testcase_27 AC 34 ms
6,944 KB
testcase_28 AC 34 ms
6,944 KB
testcase_29 AC 34 ms
6,940 KB
testcase_30 AC 34 ms
6,940 KB
testcase_31 AC 34 ms
6,940 KB
testcase_32 AC 33 ms
6,940 KB
testcase_33 AC 59 ms
9,176 KB
testcase_34 AC 59 ms
8,408 KB
testcase_35 AC 59 ms
8,668 KB
testcase_36 AC 62 ms
7,896 KB
testcase_37 AC 62 ms
9,428 KB
testcase_38 AC 61 ms
8,152 KB
testcase_39 AC 61 ms
8,028 KB
testcase_40 AC 60 ms
8,152 KB
testcase_41 AC 61 ms
8,152 KB
testcase_42 AC 60 ms
8,020 KB
testcase_43 AC 51 ms
6,944 KB
testcase_44 AC 52 ms
6,940 KB
testcase_45 AC 51 ms
6,940 KB
testcase_46 AC 51 ms
6,940 KB
testcase_47 AC 51 ms
6,944 KB
testcase_48 AC 50 ms
6,940 KB
testcase_49 AC 62 ms
9,432 KB
testcase_50 AC 62 ms
9,300 KB
testcase_51 AC 62 ms
8,020 KB
testcase_52 AC 63 ms
9,176 KB
testcase_53 AC 62 ms
8,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <queue>
struct Element{
	int val;
	long long cnt;
	bool operator < (const Element& other)const{
		if(cnt!=other.cnt) return cnt < other.cnt;
		else return val < other.val;
	}
};
long long time[100005];

int main(){
	long long m;
	int n;
	scanf("%lld%d",&m,&n);
	std::priority_queue<Element> Q;
	for(int i = 1; i <= n; i++){
		long long cnt;
		scanf("%lld",&cnt);
		time[i] = cnt;
		Q.push(Element{i,cnt});
	}
	int q;
	scanf("%d",&q);
	while(q--){
		int op;
		long long x,y;
		scanf("%d%lld%lld",&op,&x,&y);
		if(op == 1){
			time[x] += y;
			Q.push(Element{(int)x,time[x]});
		}
		else if(op == 2){
			time[x] -= y;
			Q.push(Element{(int)x,time[x]});
		}
		else{
			while(Q.size()!=0 && Q.top().cnt!=time[Q.top().val]) Q.pop();
			printf("%d\n",Q.top().val);
		}
	}
	
	
	return 0;
}
0