結果

問題 No.2918 Divide Applicants Fairly
ユーザー cled0328cled0328
提出日時 2024-10-07 18:26:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,911 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 204,076 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-12-10 07:24:50
合計ジャッジ時間 39,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
22,912 KB
testcase_01 AC 70 ms
26,880 KB
testcase_02 AC 58 ms
22,912 KB
testcase_03 AC 1,277 ms
77,696 KB
testcase_04 AC 990 ms
69,888 KB
testcase_05 AC 127 ms
30,848 KB
testcase_06 AC 158 ms
34,688 KB
testcase_07 AC 68 ms
26,880 KB
testcase_08 AC 88 ms
27,008 KB
testcase_09 AC 394 ms
46,592 KB
testcase_10 AC 1,688 ms
85,504 KB
testcase_11 AC 741 ms
62,080 KB
testcase_12 AC 355 ms
46,464 KB
testcase_13 AC 212 ms
38,656 KB
testcase_14 AC 154 ms
34,688 KB
testcase_15 AC 859 ms
65,920 KB
testcase_16 AC 1,869 ms
89,264 KB
testcase_17 AC 351 ms
46,464 KB
testcase_18 AC 743 ms
62,080 KB
testcase_19 AC 58 ms
23,040 KB
testcase_20 AC 709 ms
58,112 KB
testcase_21 AC 373 ms
46,464 KB
testcase_22 AC 78 ms
26,880 KB
testcase_23 AC 431 ms
46,464 KB
testcase_24 AC 1,704 ms
85,504 KB
testcase_25 AC 803 ms
62,080 KB
testcase_26 AC 130 ms
30,848 KB
testcase_27 AC 629 ms
58,112 KB
testcase_28 AC 156 ms
34,688 KB
testcase_29 AC 214 ms
38,656 KB
testcase_30 AC 1,148 ms
73,728 KB
testcase_31 AC 253 ms
38,528 KB
testcase_32 AC 1,911 ms
89,344 KB
testcase_33 AC 21 ms
19,072 KB
testcase_34 AC 27 ms
19,072 KB
testcase_35 AC 35 ms
23,040 KB
testcase_36 AC 633 ms
58,112 KB
testcase_37 AC 590 ms
54,272 KB
testcase_38 AC 551 ms
54,272 KB
testcase_39 AC 674 ms
65,920 KB
testcase_40 AC 420 ms
54,272 KB
testcase_41 AC 449 ms
54,400 KB
testcase_42 AC 495 ms
58,112 KB
testcase_43 AC 539 ms
58,112 KB
testcase_44 AC 576 ms
62,080 KB
testcase_45 AC 629 ms
62,080 KB
testcase_46 AC 1,554 ms
89,260 KB
testcase_47 AC 87 ms
26,752 KB
testcase_48 AC 395 ms
46,464 KB
testcase_49 AC 471 ms
54,272 KB
testcase_50 AC 107 ms
30,720 KB
testcase_51 AC 397 ms
46,464 KB
testcase_52 AC 534 ms
54,272 KB
testcase_53 AC 365 ms
50,304 KB
testcase_54 AC 430 ms
50,176 KB
testcase_55 AC 486 ms
50,304 KB
testcase_56 AC 488 ms
50,304 KB
testcase_57 AC 644 ms
58,112 KB
testcase_58 AC 488 ms
50,304 KB
testcase_59 AC 483 ms
50,432 KB
testcase_60 AC 214 ms
38,656 KB
testcase_61 AC 484 ms
50,304 KB
testcase_62 AC 351 ms
46,336 KB
testcase_63 AC 357 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=7200000;i<8800001;i++)if(dp[20][i])ans=min(ans,abs(i-8000000));
	cout<<ans<<"\n";
}
0