結果

問題 No.2918 Divide Applicants Fairly
ユーザー miiemiie
提出日時 2024-10-08 22:26:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 716 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 258,364 KB
実行使用メモリ 249,344 KB
最終ジャッジ日時 2024-10-08 22:28:04
合計ジャッジ時間 64,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
38,496 KB
testcase_01 AC 123 ms
50,368 KB
testcase_02 AC 133 ms
44,244 KB
testcase_03 AC 1,721 ms
202,480 KB
testcase_04 AC 1,722 ms
179,184 KB
testcase_05 AC 289 ms
67,712 KB
testcase_06 AC 331 ms
73,616 KB
testcase_07 AC 149 ms
50,208 KB
testcase_08 AC 182 ms
55,992 KB
testcase_09 AC 1,097 ms
114,596 KB
testcase_10 AC 1,943 ms
231,800 KB
testcase_11 AC 1,480 ms
155,588 KB
testcase_12 AC 1,116 ms
108,728 KB
testcase_13 AC 635 ms
85,248 KB
testcase_14 AC 323 ms
73,740 KB
testcase_15 AC 1,634 ms
167,340 KB
testcase_16 TLE -
testcase_17 AC 894 ms
108,732 KB
testcase_18 AC 1,481 ms
155,588 KB
testcase_19 AC 98 ms
44,288 KB
testcase_20 AC 1,168 ms
149,888 KB
testcase_21 AC 987 ms
108,732 KB
testcase_22 AC 144 ms
50,372 KB
testcase_23 AC 1,180 ms
114,600 KB
testcase_24 TLE -
testcase_25 AC 1,588 ms
161,468 KB
testcase_26 AC 255 ms
67,712 KB
testcase_27 AC 1,333 ms
143,840 KB
testcase_28 AC 339 ms
73,616 KB
testcase_29 AC 578 ms
85,248 KB
testcase_30 AC 1,938 ms
190,752 KB
testcase_31 AC 791 ms
91,136 KB
testcase_32 TLE -
testcase_33 AC 52 ms
26,624 KB
testcase_34 AC 67 ms
32,512 KB
testcase_35 AC 96 ms
38,632 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 1,839 ms
132,224 KB
testcase_39 AC 237 ms
167,340 KB
testcase_40 AC 179 ms
132,096 KB
testcase_41 AC 177 ms
137,984 KB
testcase_42 AC 183 ms
143,872 KB
testcase_43 AC 189 ms
149,760 KB
testcase_44 AC 198 ms
155,592 KB
testcase_45 AC 206 ms
161,464 KB
testcase_46 AC 311 ms
249,344 KB
testcase_47 AC 187 ms
55,988 KB
testcase_48 AC 1,354 ms
114,600 KB
testcase_49 TLE -
testcase_50 AC 238 ms
62,120 KB
testcase_51 AC 1,354 ms
114,604 KB
testcase_52 AC 1,039 ms
132,096 KB
testcase_53 AC 1,460 ms
120,448 KB
testcase_54 AC 350 ms
120,448 KB
testcase_55 AC 1,681 ms
126,348 KB
testcase_56 AC 1,683 ms
126,220 KB
testcase_57 AC 1,216 ms
143,872 KB
testcase_58 AC 1,675 ms
126,240 KB
testcase_59 AC 1,385 ms
126,444 KB
testcase_60 AC 490 ms
85,248 KB
testcase_61 AC 1,306 ms
126,308 KB
testcase_62 AC 969 ms
108,724 KB
testcase_63 AC 927 ms
108,856 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 = 24000005;
	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/3)){
			cout << 0 << endl;
			return 0;
		}
		dp[n/2+1].set(sz/3+a[i], 1);
	}
	int ans = 1e9;
	for(int i=sz/3-800000; i<=sz/3+800000; i++){
		if(dp[n/2].test(i)) ans = min(ans, max(sz/3-i, i-sz/3));
	}
	cout << ans << endl;
}
0