結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 23:05:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,425 bytes
コンパイル時間 1,421 ms
コンパイル使用メモリ 126,076 KB
実行使用メモリ 245,024 KB
最終ジャッジ日時 2024-08-09 23:05:44
合計ジャッジ時間 5,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
13,888 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 42 ms
6,940 KB
testcase_03 AC 12 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>
#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;
    for(int _ = 0; _ < 50; _++){
        shuffle(a.begin(), a.end(), g);
        
        vector<vector<int>> dp0(n + 1, vector<int>(10001, -inf));
        vector<vector<int>> dp1(n + 1, vector<int>(10001, -inf));
        dp0[0][0] = 0;
        
        for (int i = 0; i < n; i++) {
            for (int j = 0; j <= 10000; 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] <= 10000) {
                    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