結果

問題 No.2804 Fixer And Ratism
ユーザー tailstails
提出日時 2024-07-13 01:51:34
言語 cLay
(20240714-1)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 4,126 ms
コンパイル使用メモリ 186,852 KB
実行使用メモリ 8,264 KB
最終ジャッジ日時 2024-07-13 01:51:40
合計ジャッジ時間 6,333 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 13 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 14 ms
6,944 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 12 ms
8,264 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 19 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 17 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 26 ms
6,940 KB
testcase_24 AC 24 ms
6,944 KB
testcase_25 AC 27 ms
6,944 KB
testcase_26 AC 26 ms
6,940 KB
testcase_27 AC 23 ms
6,944 KB
testcase_28 AC 27 ms
6,940 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 25 ms
6,940 KB
testcase_31 AC 24 ms
6,940 KB
testcase_32 AC 26 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

LHeap<ll>h;
h.malloc(100,1);
map<string,ll>m;
string a[100];
ll@n,@q,b=0,o[10],v,w;
rep(q){
	ll@t;
	if(t==1){
		string@s;
		ll@r;
		ll d=b++;
		h.change(d,r);
		m[s]=d;
		a[d]=s;
	}
	if(t==2){
		ll@x;
		n-=x;
	}
	if(t==3){
		string@s;
		ll@x;
		ll d=m[s];
		ll r=h.val[d];
		if(r<5000){
			h.change(d,r+5000);
		}
		n+=x;
	}
	v=w=0;
	while(h.size>n){
		ll d=h.pop();
		ll r=h.val[d];
		if(r<5000){
			o[w++]=d;
		}else{
			while(v<w&&h.val[o[v]]<r-5000){
				wt(a[o[v]]);
				++v;
			}
			wt(a[d]);
		}
	}
	while(v<w){
		wt(a[o[v]]);
		++v;
	}
}
0