結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 23:12:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,606 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 125,532 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-08-09 23:12:35
合計ジャッジ時間 19,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 1,205 ms
144,256 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 1,120 ms
144,128 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 963 ms
117,632 KB
testcase_12 AC 580 ms
75,392 KB
testcase_13 AC 872 ms
107,648 KB
testcase_14 AC 796 ms
97,536 KB
testcase_15 AC 696 ms
87,680 KB
testcase_16 AC 856 ms
105,856 KB
testcase_17 AC 1,222 ms
144,128 KB
testcase_18 AC 1,219 ms
144,128 KB
testcase_19 AC 1,228 ms
144,128 KB
testcase_20 AC 1,226 ms
144,128 KB
testcase_21 AC 1,232 ms
144,128 KB
testcase_22 AC 146 ms
21,504 KB
testcase_23 AC 121 ms
18,560 KB
testcase_24 AC 174 ms
25,088 KB
testcase_25 AC 768 ms
90,112 KB
testcase_26 AC 531 ms
66,048 KB
testcase_27 AC 553 ms
67,840 KB
testcase_28 AC 720 ms
86,272 KB
testcase_29 AC 1,154 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];
    
    // 配列をシャッフル
    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; _++){
        shuffle(a.begin(), a.end(), g);
        //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]);
    }

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