結果

問題 No.2918 Divide Applicants Fairly
ユーザー miiemiie
提出日時 2024-10-08 22:23:50
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 3,113 ms
コンパイル使用メモリ 259,152 KB
実行使用メモリ 167,296 KB
最終ジャッジ日時 2024-11-23 20:08:13
合計ジャッジ時間 29,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
26,864 KB
testcase_01 AC 61 ms
34,676 KB
testcase_02 AC 43 ms
30,592 KB
testcase_03 AC 1,112 ms
136,064 KB
testcase_04 AC 838 ms
120,448 KB
testcase_05 AC 123 ms
46,208 KB
testcase_06 AC 152 ms
50,172 KB
testcase_07 AC 59 ms
34,676 KB
testcase_08 AC 74 ms
38,420 KB
testcase_09 AC 441 ms
77,440 KB
testcase_10 AC 968 ms
155,708 KB
testcase_11 AC 646 ms
104,828 KB
testcase_12 AC 458 ms
73,532 KB
testcase_13 AC 227 ms
58,216 KB
testcase_14 AC 150 ms
50,164 KB
testcase_15 AC 727 ms
112,644 KB
testcase_16 AC 1,043 ms
163,380 KB
testcase_17 AC 344 ms
73,532 KB
testcase_18 AC 612 ms
104,832 KB
testcase_19 AC 43 ms
30,720 KB
testcase_20 AC 447 ms
100,880 KB
testcase_21 AC 377 ms
73,532 KB
testcase_22 AC 60 ms
34,672 KB
testcase_23 AC 472 ms
77,440 KB
testcase_24 AC 1,029 ms
155,520 KB
testcase_25 AC 652 ms
108,672 KB
testcase_26 AC 124 ms
46,208 KB
testcase_27 AC 535 ms
96,968 KB
testcase_28 AC 152 ms
50,292 KB
testcase_29 AC 218 ms
58,144 KB
testcase_30 AC 862 ms
128,396 KB
testcase_31 AC 257 ms
61,952 KB
testcase_32 AC 986 ms
163,384 KB
testcase_33 AC 15 ms
18,816 KB
testcase_34 AC 21 ms
22,924 KB
testcase_35 AC 31 ms
26,900 KB
testcase_36 AC 853 ms
97,004 KB
testcase_37 AC 793 ms
93,056 KB
testcase_38 AC 701 ms
89,156 KB
testcase_39 AC 86 ms
112,644 KB
testcase_40 AC 47 ms
89,152 KB
testcase_41 AC 48 ms
93,096 KB
testcase_42 AC 50 ms
97,028 KB
testcase_43 AC 51 ms
100,900 KB
testcase_44 AC 77 ms
104,780 KB
testcase_45 AC 83 ms
108,672 KB
testcase_46 AC 112 ms
167,296 KB
testcase_47 AC 74 ms
38,376 KB
testcase_48 AC 503 ms
77,440 KB
testcase_49 AC 774 ms
93,184 KB
testcase_50 AC 95 ms
42,552 KB
testcase_51 AC 502 ms
77,440 KB
testcase_52 AC 368 ms
89,280 KB
testcase_53 AC 558 ms
81,408 KB
testcase_54 AC 103 ms
81,280 KB
testcase_55 AC 627 ms
85,276 KB
testcase_56 AC 635 ms
85,272 KB
testcase_57 AC 432 ms
97,008 KB
testcase_58 AC 632 ms
85,284 KB
testcase_59 AC 637 ms
85,276 KB
testcase_60 AC 220 ms
58,040 KB
testcase_61 AC 634 ms
85,248 KB
testcase_62 AC 452 ms
73,532 KB
testcase_63 AC 452 ms
73,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
int main(){
	int n;
	cin >> n;
	vector<int> a(n);
	for(int i=0; i<n; i++) cin >> a[i];
	const int sz = 16000005;
	vector<bitset<sz>> dp(n+1);
	for(int i=0; i<n; i++){
		auto ndp = dp;
		for(int j=max(0, n/2-i); j<=min(n/2+i, n); j++){
			if(j != 0) ndp[j-1] |= dp[j]>>a[i];
			if(j != n) ndp[j+1] |= dp[j]<<a[i];
		}
		swap(ndp, dp);
		if(dp[n/2].test(sz/2)){
			cout << 0 << endl;
			return 0;
		}
		dp[n/2+1].set(sz/2+a[i], 1);
	}
	int ans = 1e9;
	for(int i=sz/2-800000; i<=sz/2+800000; i++){
		if(dp[n/2].test(i)) ans = min(ans, max(sz/2-i, i-sz/2));
	}
	cout << ans << endl;
}
0