結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
28,860 KB
testcase_01 AC 68 ms
36,772 KB
testcase_02 AC 51 ms
32,508 KB
testcase_03 AC 1,938 ms
137,988 KB
testcase_04 AC 1,483 ms
122,396 KB
testcase_05 AC 142 ms
48,288 KB
testcase_06 AC 171 ms
52,248 KB
testcase_07 AC 64 ms
36,620 KB
testcase_08 AC 81 ms
40,372 KB
testcase_09 AC 586 ms
79,364 KB
testcase_10 TLE -
testcase_11 AC 1,112 ms
106,788 KB
testcase_12 AC 513 ms
75,512 KB
testcase_13 AC 234 ms
60,148 KB
testcase_14 AC 158 ms
52,576 KB
testcase_15 AC 1,281 ms
114,560 KB
testcase_16 TLE -
testcase_17 AC 514 ms
75,468 KB
testcase_18 AC 1,055 ms
106,916 KB
testcase_19 AC 54 ms
32,520 KB
testcase_20 AC 1,039 ms
102,940 KB
testcase_21 AC 492 ms
75,620 KB
testcase_22 AC 68 ms
36,716 KB
testcase_23 AC 608 ms
79,556 KB
testcase_24 TLE -
testcase_25 AC 1,197 ms
110,676 KB
testcase_26 AC 138 ms
48,136 KB
testcase_27 AC 949 ms
98,900 KB
testcase_28 AC 176 ms
52,476 KB
testcase_29 AC 255 ms
60,024 KB
testcase_30 AC 1,690 ms
130,176 KB
testcase_31 AC 312 ms
63,936 KB
testcase_32 TLE -
testcase_33 AC 17 ms
20,908 KB
testcase_34 AC 24 ms
24,696 KB
testcase_35 AC 35 ms
28,856 KB
testcase_36 AC 895 ms
99,068 KB
testcase_37 AC 842 ms
95,164 KB
testcase_38 AC 757 ms
91,248 KB
testcase_39 AC 1,278 ms
114,516 KB
testcase_40 AC 741 ms
91,136 KB
testcase_41 AC 858 ms
95,072 KB
testcase_42 AC 886 ms
98,892 KB
testcase_43 AC 1,030 ms
102,788 KB
testcase_44 AC 1,111 ms
106,768 KB
testcase_45 AC 1,182 ms
110,816 KB
testcase_46 TLE -
testcase_47 AC 91 ms
40,448 KB
testcase_48 AC 552 ms
79,420 KB
testcase_49 AC 816 ms
95,156 KB
testcase_50 AC 143 ms
44,492 KB
testcase_51 AC 560 ms
79,432 KB
testcase_52 AC 765 ms
91,140 KB
testcase_53 AC 614 ms
83,416 KB
testcase_54 AC 623 ms
83,260 KB
testcase_55 AC 688 ms
87,196 KB
testcase_56 AC 676 ms
87,248 KB
testcase_57 AC 950 ms
99,056 KB
testcase_58 AC 670 ms
87,224 KB
testcase_59 AC 699 ms
87,256 KB
testcase_60 AC 248 ms
60,072 KB
testcase_61 AC 712 ms
87,204 KB
testcase_62 AC 526 ms
75,496 KB
testcase_63 AC 521 ms
75,516 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=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