結果

問題 No.2918 Divide Applicants Fairly
ユーザー cled0328cled0328
提出日時 2024-10-07 22:26:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 3,885 ms
コンパイル使用メモリ 223,728 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-07 22:26:26
合計ジャッジ時間 14,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,128 KB
testcase_01 AC 37 ms
18,676 KB
testcase_02 AC 28 ms
16,156 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 60 ms
21,340 KB
testcase_06 AC 73 ms
23,760 KB
testcase_07 AC 38 ms
18,688 KB
testcase_08 AC 43 ms
18,688 KB
testcase_09 AC 174 ms
31,360 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 319 ms
41,576 KB
testcase_12 AC 174 ms
31,488 KB
testcase_13 AC 96 ms
26,488 KB
testcase_14 AC 71 ms
23,760 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 161 ms
31,360 KB
testcase_18 AC 317 ms
41,600 KB
testcase_19 AC 28 ms
16,128 KB
testcase_20 AC 288 ms
38,996 KB
testcase_21 AC 185 ms
31,360 KB
testcase_22 AC 34 ms
18,816 KB
testcase_23 AC 169 ms
31,360 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 337 ms
41,552 KB
testcase_26 AC 59 ms
21,204 KB
testcase_27 AC 276 ms
39,040 KB
testcase_28 AC 74 ms
23,764 KB
testcase_29 AC 97 ms
26,320 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 106 ms
26,192 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 14 ms
13,644 KB
testcase_34 AC 18 ms
13,440 KB
testcase_35 AC 25 ms
16,208 KB
testcase_36 AC 276 ms
38,992 KB
testcase_37 AC 258 ms
36,480 KB
testcase_38 AC 241 ms
36,352 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 270 ms
36,432 KB
testcase_41 AC 274 ms
36,480 KB
testcase_42 AC 291 ms
38,996 KB
testcase_43 AC 310 ms
38,868 KB
testcase_44 AC 362 ms
41,600 KB
testcase_45 AC 358 ms
41,600 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 43 ms
18,772 KB
testcase_48 AC 177 ms
31,360 KB
testcase_49 AC 246 ms
36,440 KB
testcase_50 AC 53 ms
21,332 KB
testcase_51 AC 206 ms
31,360 KB
testcase_52 AC 233 ms
36,432 KB
testcase_53 AC 185 ms
33,920 KB
testcase_54 AC 191 ms
33,920 KB
testcase_55 AC 206 ms
34,004 KB
testcase_56 AC 224 ms
33,920 KB
testcase_57 AC 281 ms
39,040 KB
testcase_58 AC 208 ms
33,920 KB
testcase_59 AC 212 ms
33,920 KB
testcase_60 AC 99 ms
26,332 KB
testcase_61 AC 205 ms
34,000 KB
testcase_62 AC 189 ms
31,360 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
int n,r[40];
bitset<10400001> dp[27];
int main(){
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>r[i];
	}
	if(n>=26){
		cout<<"0\n";
		return 0;
	}
	for(int i=0;i<n;i++){
		for(int j=1;j<27;j++){
			if(abs(j-13)>(n-i))continue;
			if(abs(j-13)>i)continue;
			dp[j-1]|=dp[j]>>r[i];
		}
		for(int j=26;j--;){
			if(abs(j-13)>(n-i))continue;
			if(abs(j-13)>i)continue;
			dp[j+1]|=dp[j]<<r[i];
		}
		dp[14][5200000+r[i]]=1;
	}
	int ans=800001;
	for(int i=4400000;i<6000001;i++)if(dp[13][i])ans=min(ans,abs(i-5200000));
	cout<<ans<<"\n";
}
0