結果

問題 No.2918 Divide Applicants Fairly
ユーザー miiemiie
提出日時 2024-10-08 22:19:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 631 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 258,700 KB
実行使用メモリ 157,700 KB
最終ジャッジ日時 2024-10-08 22:20:08
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
29,024 KB
testcase_01 AC 81 ms
36,496 KB
testcase_02 AC 64 ms
32,512 KB
testcase_03 AC 1,946 ms
138,164 KB
testcase_04 AC 1,509 ms
122,400 KB
testcase_05 AC 186 ms
48,180 KB
testcase_06 AC 192 ms
52,120 KB
testcase_07 AC 82 ms
36,496 KB
testcase_08 AC 100 ms
40,372 KB
testcase_09 AC 602 ms
79,236 KB
testcase_10 TLE -
testcase_11 AC 1,123 ms
106,776 KB
testcase_12 AC 515 ms
75,508 KB
testcase_13 AC 252 ms
60,080 KB
testcase_14 AC 208 ms
52,264 KB
testcase_15 AC 1,310 ms
114,520 KB
testcase_16 TLE -
testcase_17 AC 525 ms
75,528 KB
testcase_18 AC 1,084 ms
106,888 KB
testcase_19 AC 64 ms
32,648 KB
testcase_20 AC 1,035 ms
102,852 KB
testcase_21 AC 526 ms
75,648 KB
testcase_22 AC 82 ms
36,780 KB
testcase_23 AC 592 ms
79,564 KB
testcase_24 TLE -
testcase_25 AC 1,174 ms
110,640 KB
testcase_26 AC 158 ms
48,152 KB
testcase_27 AC 956 ms
99,068 KB
testcase_28 AC 188 ms
52,244 KB
testcase_29 AC 262 ms
60,132 KB
testcase_30 AC 1,694 ms
130,152 KB
testcase_31 AC 306 ms
63,920 KB
testcase_32 TLE -
testcase_33 AC 33 ms
20,760 KB
testcase_34 AC 41 ms
24,664 KB
testcase_35 AC 51 ms
28,924 KB
testcase_36 AC 913 ms
99,060 KB
testcase_37 AC 851 ms
95,056 KB
testcase_38 AC 760 ms
91,124 KB
testcase_39 AC 1,316 ms
114,584 KB
testcase_40 AC 786 ms
91,132 KB
testcase_41 AC 848 ms
94,984 KB
testcase_42 AC 926 ms
98,960 KB
testcase_43 AC 988 ms
102,868 KB
testcase_44 AC 1,088 ms
106,796 KB
testcase_45 AC 1,210 ms
110,676 KB
testcase_46 TLE -
testcase_47 AC 105 ms
40,352 KB
testcase_48 AC 561 ms
79,552 KB
testcase_49 AC 857 ms
95,068 KB
testcase_50 AC 124 ms
44,472 KB
testcase_51 AC 552 ms
79,436 KB
testcase_52 AC 792 ms
91,144 KB
testcase_53 AC 621 ms
83,340 KB
testcase_54 AC 622 ms
83,432 KB
testcase_55 AC 728 ms
87,160 KB
testcase_56 AC 698 ms
87,256 KB
testcase_57 AC 966 ms
99,096 KB
testcase_58 AC 710 ms
87,384 KB
testcase_59 AC 696 ms
87,224 KB
testcase_60 AC 256 ms
60,220 KB
testcase_61 AC 707 ms
87,216 KB
testcase_62 AC 508 ms
75,508 KB
testcase_63 AC 501 ms
75,608 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);
		dp[n/2+1].set(sz/2+a[i], 1);
	}
	int ans = 1e9;
	for(int i=0; i<sz; i++){
		if(dp[n/2].test(i)) ans = min(ans, max(sz/2-i, i-sz/2));
	}
	cout << ans << endl;
}
0