結果

問題 No.2918 Divide Applicants Fairly
ユーザー cled0328cled0328
提出日時 2024-10-07 22:42:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 686 bytes
コンパイル時間 3,283 ms
コンパイル使用メモリ 225,812 KB
実行使用メモリ 175,456 KB
最終ジャッジ日時 2024-10-07 22:43:46
合計ジャッジ時間 47,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
42,552 KB
testcase_01 AC 114 ms
50,340 KB
testcase_02 AC 80 ms
42,560 KB
testcase_03 AC 1,890 ms
151,740 KB
testcase_04 AC 1,451 ms
136,264 KB
testcase_05 AC 190 ms
58,136 KB
testcase_06 AC 230 ms
66,000 KB
testcase_07 AC 126 ms
50,336 KB
testcase_08 AC 135 ms
50,296 KB
testcase_09 AC 559 ms
89,224 KB
testcase_10 TLE -
testcase_11 AC 1,097 ms
120,536 KB
testcase_12 AC 530 ms
89,388 KB
testcase_13 AC 341 ms
73,848 KB
testcase_14 AC 240 ms
65,960 KB
testcase_15 AC 1,277 ms
128,440 KB
testcase_16 TLE -
testcase_17 AC 540 ms
89,548 KB
testcase_18 AC 1,084 ms
120,776 KB
testcase_19 AC 106 ms
42,544 KB
testcase_20 AC 981 ms
112,908 KB
testcase_21 AC 553 ms
89,364 KB
testcase_22 AC 114 ms
50,356 KB
testcase_23 AC 588 ms
89,500 KB
testcase_24 TLE -
testcase_25 AC 1,200 ms
120,680 KB
testcase_26 AC 213 ms
58,112 KB
testcase_27 AC 910 ms
112,884 KB
testcase_28 AC 248 ms
65,996 KB
testcase_29 AC 327 ms
73,724 KB
testcase_30 AC 1,656 ms
143,952 KB
testcase_31 AC 353 ms
73,764 KB
testcase_32 TLE -
testcase_33 AC 39 ms
34,564 KB
testcase_34 AC 45 ms
34,900 KB
testcase_35 AC 70 ms
42,484 KB
testcase_36 AC 928 ms
112,668 KB
testcase_37 AC 807 ms
105,016 KB
testcase_38 AC 784 ms
105,028 KB
testcase_39 AC 1,257 ms
128,448 KB
testcase_40 AC 779 ms
105,024 KB
testcase_41 AC 873 ms
105,004 KB
testcase_42 AC 959 ms
112,796 KB
testcase_43 AC 1,034 ms
112,900 KB
testcase_44 AC 1,117 ms
120,684 KB
testcase_45 AC 1,197 ms
120,672 KB
testcase_46 TLE -
testcase_47 AC 130 ms
50,480 KB
testcase_48 AC 581 ms
89,448 KB
testcase_49 AC 799 ms
104,996 KB
testcase_50 AC 171 ms
58,184 KB
testcase_51 AC 596 ms
89,568 KB
testcase_52 AC 793 ms
105,200 KB
testcase_53 AC 600 ms
97,276 KB
testcase_54 AC 629 ms
97,244 KB
testcase_55 AC 686 ms
97,376 KB
testcase_56 AC 727 ms
97,420 KB
testcase_57 AC 904 ms
112,860 KB
testcase_58 AC 717 ms
97,308 KB
testcase_59 AC 730 ms
97,212 KB
testcase_60 AC 319 ms
73,776 KB
testcase_61 AC 694 ms
97,336 KB
testcase_62 AC 555 ms
89,352 KB
testcase_63 AC 545 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
int n,r[40];
bitset<32000001> dp[41];//16000001だと嘘っぽい。それとも嘘じゃない?
int main(){
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>r[i];
	}
	for(int i=0;i<n;i++){
		for(int j=1;j<41;j++){
			if(abs(j-20)>(n-i))continue;
			if(abs(j-20)>i)continue;
			dp[j-1]|=dp[j]>>r[i];
		}
		for(int j=40;j--;){
			if(abs(j-20)>(n-i))continue;
			if(abs(j-20)>i)continue;
			dp[j+1]|=dp[j]<<r[i];
		}
		dp[21][16000000+r[i]]=1;
	}
	int ans=800001;
	for(int i=15200000;i<16800001;i++)if(dp[20][i])ans=min(ans,abs(i-16000000));
	cout<<ans<<"\n";
}
0