結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
26,856 KB
testcase_01 AC 72 ms
34,544 KB
testcase_02 AC 52 ms
30,712 KB
testcase_03 AC 682 ms
136,064 KB
testcase_04 AC 692 ms
120,556 KB
testcase_05 AC 148 ms
46,208 KB
testcase_06 AC 178 ms
50,296 KB
testcase_07 AC 73 ms
34,560 KB
testcase_08 AC 94 ms
38,424 KB
testcase_09 AC 472 ms
77,440 KB
testcase_10 AC 731 ms
155,648 KB
testcase_11 AC 635 ms
104,832 KB
testcase_12 AC 491 ms
73,532 KB
testcase_13 AC 253 ms
58,092 KB
testcase_14 AC 178 ms
50,296 KB
testcase_15 AC 687 ms
112,648 KB
testcase_16 AC 834 ms
163,384 KB
testcase_17 AC 383 ms
73,532 KB
testcase_18 AC 651 ms
104,832 KB
testcase_19 AC 57 ms
30,592 KB
testcase_20 AC 480 ms
101,000 KB
testcase_21 AC 416 ms
73,584 KB
testcase_22 AC 73 ms
34,672 KB
testcase_23 AC 517 ms
77,440 KB
testcase_24 AC 815 ms
155,520 KB
testcase_25 AC 648 ms
108,800 KB
testcase_26 AC 143 ms
46,208 KB
testcase_27 AC 565 ms
97,024 KB
testcase_28 AC 180 ms
50,296 KB
testcase_29 AC 252 ms
58,164 KB
testcase_30 AC 731 ms
128,208 KB
testcase_31 AC 289 ms
61,952 KB
testcase_32 AC 748 ms
163,384 KB
testcase_33 AC 16 ms
18,832 KB
testcase_34 AC 26 ms
22,800 KB
testcase_35 AC 38 ms
26,928 KB
testcase_36 AC 892 ms
96,968 KB
testcase_37 AC 886 ms
93,088 KB
testcase_38 AC 754 ms
89,276 KB
testcase_39 AC 61 ms
112,584 KB
testcase_40 AC 68 ms
89,144 KB
testcase_41 AC 107 ms
93,056 KB
testcase_42 AC 97 ms
96,836 KB
testcase_43 AC 55 ms
100,876 KB
testcase_44 AC 59 ms
104,832 KB
testcase_45 AC 59 ms
108,672 KB
testcase_46 AC 84 ms
167,296 KB
testcase_47 AC 93 ms
38,372 KB
testcase_48 AC 543 ms
77,440 KB
testcase_49 AC 795 ms
93,100 KB
testcase_50 AC 115 ms
42,452 KB
testcase_51 AC 525 ms
77,440 KB
testcase_52 AC 396 ms
89,184 KB
testcase_53 AC 601 ms
81,344 KB
testcase_54 AC 119 ms
81,284 KB
testcase_55 AC 670 ms
85,276 KB
testcase_56 AC 681 ms
85,240 KB
testcase_57 AC 455 ms
97,024 KB
testcase_58 AC 669 ms
85,276 KB
testcase_59 AC 673 ms
85,248 KB
testcase_60 AC 253 ms
58,164 KB
testcase_61 AC 676 ms
85,372 KB
testcase_62 AC 477 ms
73,532 KB
testcase_63 AC 484 ms
73,576 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