結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 23:13:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,660 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 128,472 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-08-09 23:13:38
合計ジャッジ時間 22,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 1,346 ms
144,128 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 1,273 ms
144,128 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 1,092 ms
117,632 KB
testcase_12 AC 647 ms
75,392 KB
testcase_13 AC 986 ms
107,648 KB
testcase_14 AC 902 ms
97,536 KB
testcase_15 AC 787 ms
87,680 KB
testcase_16 AC 988 ms
105,856 KB
testcase_17 AC 1,369 ms
144,128 KB
testcase_18 AC 1,348 ms
144,128 KB
testcase_19 AC 1,353 ms
144,128 KB
testcase_20 AC 1,353 ms
144,128 KB
testcase_21 AC 1,359 ms
144,128 KB
testcase_22 AC 162 ms
21,504 KB
testcase_23 AC 134 ms
18,560 KB
testcase_24 AC 194 ms
25,088 KB
testcase_25 AC 826 ms
89,984 KB
testcase_26 AC 598 ms
66,048 KB
testcase_27 AC 615 ms
67,840 KB
testcase_28 AC 798 ms
86,144 KB
testcase_29 AC 1,269 ms
136,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <random>
#include <limits.h>
using namespace std;

const int inf = INT_MAX / 2; // 代わりに2^31-1の大きな値
const int mod = 998244353;

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) cin >> a[i];
    //aをソート
    sort(a.begin(), a.end());
    // 配列をシャッフル
    random_device rd;
    mt19937 g(rd());
    int ans = -1;
    vector<vector<int>> dp0(n + 1, vector<int>(6001, -inf));
    vector<vector<int>> dp1(n + 1, vector<int>(6001, -inf));
    for(int _ = 0; _ < 10; _++){
        
        //dpの初期化
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= 6000; j++) {
                dp0[i][j] = -inf;
                dp1[i][j] = -inf;
            }
        }
        dp0[0][0] = 0;
        
        for (int i = 0; i < n; i++) {
            for (int j = 0; j <= 6000; j++) {
                dp0[i + 1][j] = max(dp0[i + 1][j], dp0[i][j] + a[i]);
                dp1[i + 1][j] = max(dp1[i + 1][j], dp1[i][j] + a[i]);
                dp1[i + 1][abs(j - a[i])] = max(dp1[i + 1][abs(j - a[i])], dp1[i][j]);
                dp1[i + 1][abs(j - a[i])] = max(dp1[i + 1][abs(j - a[i])], dp0[i][j]);
                if (j + a[i] <= 6000) {
                    dp1[i + 1][j + a[i]] = max(dp1[i + 1][j + a[i]], dp1[i][j]);
                    dp1[i + 1][j + a[i]] = max(dp1[i + 1][j + a[i]], dp0[i][j]);
                }
            }
        }
        
        ans = max(ans, dp1[n][0] <= 0 ? -1 : dp1[n][0]);
        shuffle(a.begin(), a.end(), g);
    }

    cout << ans << endl;
    
    return 0;
}
0