結果

問題 No.2840 RGB Plates
ユーザー pockynypockyny
提出日時 2024-08-09 22:22:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,034 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 71,092 KB
実行使用メモリ 13,468 KB
最終ジャッジ日時 2024-08-09 22:22:34
合計ジャッジ時間 4,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
13,168 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
typedef long long ll;
const int B = 100000;
int dp[200010][2],ndp[200010][2],a[3010],inf = 1000000000;
int main(){
    int i,j,n; cin >> n;
    for(i=0;i<n;i++) cin >> a[i];
    for(i=0;i<=2*B;i++) dp[i][0] = dp[i][1] = ndp[i][0] = ndp[i][1] = -inf;
    dp[B][0] = 0;
    for(i=0;i<n;i++){
        for(j=0;j<=2*B;j++){
            for(int k=0;k<2;k++){
                ndp[j][k] = max(ndp[j][k],dp[j][k] + a[i]);
            }
            for(int k=0;k<2;k++){
                if(dp[j][k]<0) continue;
                if(j>=a[i]) ndp[j - a[i]][1] = max(ndp[j - a[i]][k],dp[j][k]);
                if(j + a[i]<=2*B) ndp[j + a[i]][1] = max(ndp[j + a[i]][k],dp[j][k]);
            }
        }
        for(j=0;j<=2*B;j++){
            for(int k=0;k<2;k++){
                dp[j][k] = ndp[j][k]; ndp[j][k] = -inf;
            }
        }
    }
    // cout << dp[B][0] << " " << dp[B][1] << endl;
    if(dp[B][1]<=0){
        cout << -1 << "\n";
    }else{
        cout << dp[B][1] << "\n";
    }
}
0