結果

問題 No.1705 Mode of long array
ユーザー kotatsugamekotatsugame
提出日時 2021-10-08 22:20:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 614 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 79,220 KB
実行使用メモリ 9,028 KB
最終ジャッジ日時 2024-07-23 04:51:36
合計ジャッジ時間 9,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 9 ms
6,948 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 148 ms
8,608 KB
testcase_14 AC 109 ms
6,944 KB
testcase_15 AC 111 ms
6,940 KB
testcase_16 AC 134 ms
6,948 KB
testcase_17 AC 98 ms
6,940 KB
testcase_18 AC 79 ms
6,940 KB
testcase_19 AC 148 ms
6,940 KB
testcase_20 AC 92 ms
6,944 KB
testcase_21 AC 115 ms
8,536 KB
testcase_22 AC 169 ms
8,864 KB
testcase_23 AC 95 ms
6,944 KB
testcase_24 AC 95 ms
6,944 KB
testcase_25 AC 95 ms
6,944 KB
testcase_26 AC 95 ms
6,940 KB
testcase_27 AC 95 ms
6,944 KB
testcase_28 AC 95 ms
6,944 KB
testcase_29 AC 95 ms
6,940 KB
testcase_30 AC 97 ms
6,940 KB
testcase_31 AC 97 ms
6,944 KB
testcase_32 AC 95 ms
6,940 KB
testcase_33 AC 172 ms
8,884 KB
testcase_34 AC 171 ms
8,936 KB
testcase_35 AC 171 ms
8,824 KB
testcase_36 AC 171 ms
8,988 KB
testcase_37 AC 172 ms
8,844 KB
testcase_38 AC 173 ms
8,908 KB
testcase_39 AC 173 ms
9,028 KB
testcase_40 AC 175 ms
8,960 KB
testcase_41 AC 171 ms
8,908 KB
testcase_42 AC 173 ms
8,960 KB
testcase_43 AC 237 ms
8,932 KB
testcase_44 AC 247 ms
8,844 KB
testcase_45 AC 236 ms
8,844 KB
testcase_46 AC 237 ms
8,940 KB
testcase_47 AC 238 ms
8,956 KB
testcase_48 AC 237 ms
8,916 KB
testcase_49 AC 184 ms
8,916 KB
testcase_50 AC 185 ms
8,840 KB
testcase_51 AC 184 ms
8,992 KB
testcase_52 AC 184 ms
8,816 KB
testcase_53 AC 184 ms
9,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/segtree>
using namespace std;
using dat=pair<long,int>;
dat op(dat a,dat b){return a<b?b:a;}
dat e(){return make_pair(-1,-1);}
main()
{
	long N;
	int M;
	cin>>N>>M;
	vector<dat>init(M);
	for(int i=0;i<M;i++)
	{
		long a;cin>>a;
		init[i]=make_pair(a,i);
	}
	atcoder::segtree<dat,op,e>P(init);
	int Q;cin>>Q;
	for(;Q--;)
	{
		int t,x;
		long y;
		cin>>t>>x>>y;
		x--;
		if(t==1)
		{
			dat now=P.get(x);
			now.first+=y;
			P.set(x,now);
		}
		else if(t==2)
		{
			dat now=P.get(x);
			now.first-=y;
			P.set(x,now);
		}
		else
		{
			cout<<P.all_prod().second+1<<"\n";
		}
	}
}
0