結果

問題 No.2840 RGB Plates
ユーザー kotatsugamekotatsugame
提出日時 2024-08-09 22:48:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 70,336 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-18 00:59:25
合計ジャッジ時間 14,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 150 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 911 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 262 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 738 ms
6,940 KB
testcase_13 AC 459 ms
6,940 KB
testcase_14 AC 687 ms
6,940 KB
testcase_15 AC 603 ms
6,940 KB
testcase_16 AC 538 ms
6,948 KB
testcase_17 AC 661 ms
6,944 KB
testcase_18 AC 921 ms
6,944 KB
testcase_19 AC 919 ms
6,940 KB
testcase_20 AC 920 ms
6,940 KB
testcase_21 AC 919 ms
6,940 KB
testcase_22 AC 916 ms
6,944 KB
testcase_23 AC 113 ms
6,940 KB
testcase_24 AC 96 ms
6,940 KB
testcase_25 AC 137 ms
6,940 KB
testcase_26 AC 562 ms
6,940 KB
testcase_27 AC 404 ms
6,940 KB
testcase_28 AC 419 ms
6,944 KB
testcase_29 AC 541 ms
6,944 KB
testcase_30 AC 869 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cassert>
using namespace std;
const int L=100000;
int N,A[3000];
int dp[2][L];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	sort(A,A+N);
	reverse(A,A+N);
	int now=0;
	for(int j=0;j<L;j++)dp[now][j]=-1;
	int cur=0;
	for(int i=0;i<N;i++)
	{
		int nxt=1-now;
		for(int j=0;j<L;j++)dp[nxt][j]=-1;
		dp[nxt][A[i]]=cur;
		for(int j=0;j<L;j++)if(dp[now][j]>=0)
		{
			dp[nxt][j]=max(dp[nxt][j],dp[now][j]+A[i]);
			dp[nxt][abs(A[i]-j)]=max(dp[nxt][abs(A[i]-j)],dp[now][j]);
			if(j+A[i]<L)dp[nxt][j+A[i]]=max(dp[nxt][j+A[i]],dp[now][j]);
		}
		cur+=A[i];
		now=nxt;
	}
	int ans=dp[now][0];
	if(ans<=0)ans=-1;
	cout<<ans<<endl;
}
0