結果

問題 No.2840 RGB Plates
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-10 00:07:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 5,458 ms
コンパイル使用メモリ 308,040 KB
実行使用メモリ 120,968 KB
最終ジャッジ日時 2024-08-18 01:02:21
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 16 ms
22,704 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 81 ms
120,960 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
7,040 KB
testcase_08 AC 5 ms
7,388 KB
testcase_09 AC 5 ms
8,788 KB
testcase_10 AC 80 ms
120,856 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 65 ms
98,640 KB
testcase_13 AC 43 ms
63,484 KB
testcase_14 AC 58 ms
90,376 KB
testcase_15 AC 54 ms
81,996 KB
testcase_16 AC 48 ms
73,772 KB
testcase_17 AC 58 ms
88,932 KB
testcase_18 AC 81 ms
120,808 KB
testcase_19 AC 83 ms
120,800 KB
testcase_20 AC 80 ms
120,876 KB
testcase_21 AC 78 ms
120,840 KB
testcase_22 AC 79 ms
120,968 KB
testcase_23 AC 13 ms
18,600 KB
testcase_24 AC 9 ms
16,308 KB
testcase_25 AC 13 ms
21,576 KB
testcase_26 AC 49 ms
75,684 KB
testcase_27 AC 37 ms
55,792 KB
testcase_28 AC 38 ms
57,236 KB
testcase_29 AC 46 ms
72,556 KB
testcase_30 AC 73 ms
114,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i, 0, n) cin >> a[i];
    int max_t, max_a = *max_element(a.begin(), a.end());
    int sum_a = accumulate(a.begin(), a.end(), 0);
    if (n <= 20)
        max_t = max_a * n + 10;
    else if (n <= 200)
        max_t = max_a * 10 + 10;
    else
        max_t = max_a * 2 + 10;
    int dp[n + 1][max_t + 1];
    rep(i, 0, n + 1) rep(j, 0, max_t + 1) dp[i][j] = 0;
    dp[0][0] = 1;
    rep(i, 0, n) {
        for (int j = max_t; j >= 0; j--) {
            dp[i + 1][j] += dp[i][j];
            if (j + a[i] <= max_t)
                dp[i + 1][j + a[i]] += dp[i][j];
        }
    }
    int mn = 1e9;
    rep(i, 0, max_t + 1) {
        if (dp[n][i] >= 2) {
            mn = i;
            break;
        }
    }
    int ans = sum_a - mn - mn;
    if (ans <= 0)
        ans = -1;
    cout << ans << endl;
}
0