結果

問題 No.2918 Divide Applicants Fairly
ユーザー cled0328cled0328
提出日時 2024-10-07 22:38:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 3,180 ms
コンパイル使用メモリ 224,580 KB
実行使用メモリ 79,668 KB
最終ジャッジ日時 2024-10-07 22:39:09
合計ジャッジ時間 22,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
28,916 KB
testcase_01 AC 67 ms
34,108 KB
testcase_02 AC 51 ms
28,888 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 113 ms
38,996 KB
testcase_06 AC 142 ms
44,084 KB
testcase_07 AC 68 ms
34,004 KB
testcase_08 AC 82 ms
33,756 KB
testcase_09 AC 347 ms
59,468 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 660 ms
79,668 KB
testcase_12 AC 311 ms
59,288 KB
testcase_13 AC 184 ms
49,236 KB
testcase_14 AC 132 ms
44,164 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 301 ms
59,348 KB
testcase_18 AC 667 ms
79,572 KB
testcase_19 AC 50 ms
28,880 KB
testcase_20 AC 598 ms
74,524 KB
testcase_21 AC 309 ms
59,280 KB
testcase_22 AC 69 ms
34,004 KB
testcase_23 AC 343 ms
59,344 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 729 ms
79,572 KB
testcase_26 AC 113 ms
38,992 KB
testcase_27 AC 564 ms
74,576 KB
testcase_28 AC 139 ms
43,916 KB
testcase_29 AC 187 ms
49,232 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 209 ms
49,148 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 24 ms
23,896 KB
testcase_34 AC 28 ms
23,836 KB
testcase_35 AC 40 ms
28,880 KB
testcase_36 AC 540 ms
74,580 KB
testcase_37 AC 507 ms
69,460 KB
testcase_38 AC 448 ms
69,456 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 478 ms
69,432 KB
testcase_41 AC 495 ms
69,536 KB
testcase_42 AC 585 ms
74,608 KB
testcase_43 AC 600 ms
74,628 KB
testcase_44 AC 667 ms
79,624 KB
testcase_45 AC 675 ms
79,644 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 79 ms
33,920 KB
testcase_48 AC 365 ms
59,368 KB
testcase_49 AC 487 ms
69,588 KB
testcase_50 AC 97 ms
39,036 KB
testcase_51 AC 340 ms
59,348 KB
testcase_52 AC 480 ms
69,456 KB
testcase_53 AC 377 ms
64,368 KB
testcase_54 AC 375 ms
64,536 KB
testcase_55 AC 418 ms
64,352 KB
testcase_56 AC 405 ms
64,384 KB
testcase_57 AC 548 ms
74,580 KB
testcase_58 AC 401 ms
64,420 KB
testcase_59 AC 400 ms
64,416 KB
testcase_60 AC 177 ms
49,196 KB
testcase_61 AC 411 ms
64,432 KB
testcase_62 AC 302 ms
59,344 KB
testcase_63 AC 302 ms
59,304 KB
権限があれば一括ダウンロードができます

ソースコード

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<20800001> 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][10400000+r[i]]=1;
	}
	int ans=800001;
	for(int i=9600000;i<11200001;i++)if(dp[13][i])ans=min(ans,abs(i-10400000));
	cout<<ans<<"\n";
}
0