結果

問題 No.2918 Divide Applicants Fairly
ユーザー cled0328cled0328
提出日時 2024-10-07 17:55:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,840 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 202,936 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-12-11 03:17:39
合計ジャッジ時間 37,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,912 KB
testcase_01 AC 86 ms
26,880 KB
testcase_02 AC 71 ms
23,040 KB
testcase_03 AC 1,267 ms
77,696 KB
testcase_04 AC 988 ms
69,888 KB
testcase_05 AC 145 ms
30,848 KB
testcase_06 AC 173 ms
34,688 KB
testcase_07 AC 88 ms
26,880 KB
testcase_08 AC 103 ms
26,752 KB
testcase_09 AC 405 ms
46,464 KB
testcase_10 AC 1,651 ms
85,504 KB
testcase_11 AC 742 ms
61,952 KB
testcase_12 AC 364 ms
46,464 KB
testcase_13 AC 221 ms
38,528 KB
testcase_14 AC 163 ms
34,688 KB
testcase_15 AC 857 ms
65,920 KB
testcase_16 AC 1,839 ms
89,344 KB
testcase_17 AC 356 ms
46,464 KB
testcase_18 AC 738 ms
62,080 KB
testcase_19 AC 68 ms
23,040 KB
testcase_20 AC 658 ms
58,112 KB
testcase_21 AC 356 ms
46,464 KB
testcase_22 AC 84 ms
26,752 KB
testcase_23 AC 391 ms
46,464 KB
testcase_24 AC 1,650 ms
85,376 KB
testcase_25 AC 821 ms
62,080 KB
testcase_26 AC 143 ms
30,848 KB
testcase_27 AC 623 ms
58,112 KB
testcase_28 AC 165 ms
34,688 KB
testcase_29 AC 218 ms
38,656 KB
testcase_30 AC 1,125 ms
73,600 KB
testcase_31 AC 253 ms
38,528 KB
testcase_32 AC 1,840 ms
89,344 KB
testcase_33 AC 39 ms
18,944 KB
testcase_34 AC 43 ms
19,072 KB
testcase_35 AC 51 ms
22,912 KB
testcase_36 AC 618 ms
58,112 KB
testcase_37 AC 583 ms
54,272 KB
testcase_38 AC 539 ms
54,272 KB
testcase_39 AC 664 ms
65,792 KB
testcase_40 AC 410 ms
54,272 KB
testcase_41 AC 438 ms
54,144 KB
testcase_42 AC 487 ms
58,112 KB
testcase_43 AC 522 ms
57,984 KB
testcase_44 AC 564 ms
62,080 KB
testcase_45 AC 605 ms
61,952 KB
testcase_46 AC 1,477 ms
89,344 KB
testcase_47 AC 102 ms
26,880 KB
testcase_48 AC 404 ms
46,464 KB
testcase_49 AC 482 ms
54,272 KB
testcase_50 AC 122 ms
30,848 KB
testcase_51 AC 396 ms
46,336 KB
testcase_52 AC 524 ms
54,272 KB
testcase_53 AC 356 ms
50,176 KB
testcase_54 AC 428 ms
50,304 KB
testcase_55 AC 479 ms
50,176 KB
testcase_56 AC 477 ms
50,304 KB
testcase_57 AC 623 ms
58,112 KB
testcase_58 AC 486 ms
50,304 KB
testcase_59 AC 477 ms
50,304 KB
testcase_60 AC 221 ms
38,528 KB
testcase_61 AC 478 ms
50,304 KB
testcase_62 AC 354 ms
46,336 KB
testcase_63 AC 356 ms
46,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n,r[40];
bitset<16000001> dp[41];
int main(){
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>r[i];
	}
	for(int i=0;i<n;i++){
		for(int j=1;j<41;j++){
			if(abs(j-20)>(n-i))continue;
			if(abs(j-20)>i)continue;
			dp[j-1]|=dp[j]>>r[i];
		}
		for(int j=40;j--;){
			if(abs(j-20)>(n-i))continue;
			if(abs(j-20)>i)continue;
			dp[j+1]|=dp[j]<<r[i];
		}
		dp[21][8000000+r[i]]=1;
	}
	int ans=800001;
	for(int i=0;i<16000001;i++)if(dp[20][i])ans=min(ans,abs(i-8000000));
	cout<<ans<<"\n";
}
0