結果

問題 No.1705 Mode of long array
ユーザー publflpublfl
提出日時 2021-10-08 23:03:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 687 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 52,352 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-07-23 06:25:41
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 122 ms
8,832 KB
testcase_14 AC 77 ms
6,528 KB
testcase_15 AC 54 ms
5,376 KB
testcase_16 AC 70 ms
5,376 KB
testcase_17 AC 47 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 86 ms
5,376 KB
testcase_20 AC 51 ms
5,376 KB
testcase_21 AC 89 ms
8,064 KB
testcase_22 AC 147 ms
9,728 KB
testcase_23 AC 54 ms
5,376 KB
testcase_24 AC 53 ms
5,376 KB
testcase_25 AC 53 ms
5,376 KB
testcase_26 AC 53 ms
5,376 KB
testcase_27 AC 53 ms
5,376 KB
testcase_28 AC 52 ms
5,376 KB
testcase_29 AC 52 ms
5,376 KB
testcase_30 AC 53 ms
5,376 KB
testcase_31 AC 53 ms
5,376 KB
testcase_32 AC 53 ms
5,376 KB
testcase_33 AC 185 ms
10,240 KB
testcase_34 AC 188 ms
10,240 KB
testcase_35 AC 192 ms
10,240 KB
testcase_36 AC 186 ms
10,240 KB
testcase_37 AC 204 ms
10,112 KB
testcase_38 AC 182 ms
10,240 KB
testcase_39 AC 189 ms
10,112 KB
testcase_40 AC 191 ms
10,240 KB
testcase_41 AC 199 ms
10,240 KB
testcase_42 AC 192 ms
10,368 KB
testcase_43 AC 73 ms
10,112 KB
testcase_44 AC 73 ms
10,112 KB
testcase_45 AC 74 ms
10,240 KB
testcase_46 AC 75 ms
10,240 KB
testcase_47 AC 74 ms
10,240 KB
testcase_48 AC 72 ms
10,240 KB
testcase_49 AC 125 ms
10,240 KB
testcase_50 AC 121 ms
10,240 KB
testcase_51 AC 121 ms
10,112 KB
testcase_52 AC 123 ms
10,112 KB
testcase_53 AC 126 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <set>

std::set< std::pair<long long int,int> > S;
long long int count[100010];

int main()
{
	long long int a;
	int b;
	scanf("%lld%d",&a,&b);
	for(int i=1;i<=b;i++)
	{
		long long int c;
		scanf("%lld",&c);
		count[i] = c;
	}
	
	for(int i=1;i<=b;i++) S.insert(std::make_pair(count[i],i));
	
	int c;
	scanf("%d",&c);
	while(c--)
	{
		int d,e;
		long long int f;
		scanf("%d%d%lld",&d,&e,&f);
		if(d==3)
		{
			std::set< std::pair<long long int,int> > ::iterator it = S.end();
			it--;
			printf("%d\n",it->second);
		}
		else
		{
			if(d==2) f*=(-1);
			S.erase(std::make_pair(count[e],e));
			count[e] += f;
			S.insert(std::make_pair(count[e],e));
		}
	}
}
0