結果

問題 No.2370 He ate many cakes
ユーザー tailstails
提出日時 2023-07-03 21:17:24
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 322 bytes
コンパイル時間 4,689 ms
コンパイル使用メモリ 184,096 KB
実行使用メモリ 129,744 KB
最終ジャッジ日時 2024-07-17 19:11:06
合計ジャッジ時間 17,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1,123 ms
83,512 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 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 60 ms
12,896 KB
testcase_11 AC 330 ms
29,912 KB
testcase_12 AC 1,160 ms
66,200 KB
testcase_13 TLE -
testcase_14 AC 517 ms
43,052 KB
testcase_15 TLE -
testcase_16 AC 1,780 ms
108,908 KB
testcase_17 TLE -
testcase_18 AC 162 ms
15,156 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@k,@a[n],o=0,t=0;
rep(i,n){
	if(a[i]<0){
		o+=a[i];
		a[i]=-a[i];
	}
	t+=a[i];
}
unordered_set<int>s;
priority_queue<pair<ll,int>>q;
q.push({t,0});
rep(k-1){
	auto b=q.top();
	q.pop();
	rep(i,n){
		int c=b.second|1<<i;
		if(c!=b.second&&s.insert(c).second){
			q.push({b.first-a[i],c});
		}
	}
}
wt(q.top().first+o);
0