結果

問題 No.2840 RGB Plates
ユーザー 沙耶花沙耶花
提出日時 2024-08-09 22:58:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 4,505 ms
コンパイル使用メモリ 262,092 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-18 00:59:48
合計ジャッジ時間 7,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 32 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 183 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 175 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 145 ms
5,376 KB
testcase_13 AC 92 ms
5,376 KB
testcase_14 AC 130 ms
5,376 KB
testcase_15 AC 119 ms
5,376 KB
testcase_16 AC 107 ms
5,376 KB
testcase_17 AC 133 ms
5,376 KB
testcase_18 AC 180 ms
5,376 KB
testcase_19 AC 179 ms
5,376 KB
testcase_20 AC 181 ms
5,376 KB
testcase_21 AC 180 ms
5,376 KB
testcase_22 AC 181 ms
5,376 KB
testcase_23 AC 24 ms
5,376 KB
testcase_24 AC 20 ms
5,376 KB
testcase_25 AC 28 ms
5,376 KB
testcase_26 AC 113 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 85 ms
5,376 KB
testcase_29 AC 108 ms
5,376 KB
testcase_30 AC 171 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
	
	int n;
	cin>>n;
	vector<int> a(n);
	rep(i,n)cin>>a[i];
	int maxi;
	if(n>=102)maxi = 5000*2;
	else maxi = 5000 * n;
	vector dp(maxi*2+1,Inf32);
	rep(i,n){
		vector ndp = dp;
		rep(j,maxi*2+1){
			if(j-a[i]>=0)ndp[j-a[i]] = min(ndp[j-a[i]],dp[j] + a[i]);
			if(j+a[i]<=maxi*2)ndp[j+a[i]] = min(ndp[j+a[i]],dp[j]+ a[i]);
			if(maxi+a[i]<=maxi*2)ndp[maxi+a[i]] = min(ndp[maxi+a[i]],a[i]);
			if(maxi-a[i]>=0)ndp[maxi-a[i]] = min(ndp[maxi-a[i]],a[i]);
		}
		swap(dp,ndp);
	}
	int ans = dp[maxi];
	if(ans==Inf32)ans = -1;
	else{
		int sum = 0;
		rep(i,n)sum += a[i];
		ans = sum-ans;
		if(ans==0)ans = -1;
	}
	cout<<ans<<endl;
    return 0;
}
0