結果

問題 No.2423 Merge Stones
ユーザー drken1215drken1215
提出日時 2023-08-12 19:37:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 489 ms / 4,000 ms
コード長 1,348 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 210,516 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 14:42:50
合計ジャッジ時間 26,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 481 ms
6,940 KB
testcase_12 AC 128 ms
6,944 KB
testcase_13 AC 483 ms
6,944 KB
testcase_14 AC 311 ms
6,940 KB
testcase_15 AC 212 ms
6,940 KB
testcase_16 AC 423 ms
6,940 KB
testcase_17 AC 304 ms
6,940 KB
testcase_18 AC 430 ms
6,944 KB
testcase_19 AC 126 ms
6,944 KB
testcase_20 AC 300 ms
6,940 KB
testcase_21 AC 481 ms
6,944 KB
testcase_22 AC 303 ms
6,940 KB
testcase_23 AC 210 ms
6,940 KB
testcase_24 AC 213 ms
6,940 KB
testcase_25 AC 217 ms
6,940 KB
testcase_26 AC 210 ms
6,940 KB
testcase_27 AC 366 ms
6,944 KB
testcase_28 AC 485 ms
6,944 KB
testcase_29 AC 424 ms
6,944 KB
testcase_30 AC 306 ms
6,944 KB
testcase_31 AC 303 ms
6,940 KB
testcase_32 AC 485 ms
6,940 KB
testcase_33 AC 222 ms
6,940 KB
testcase_34 AC 367 ms
6,940 KB
testcase_35 AC 299 ms
6,940 KB
testcase_36 AC 298 ms
6,940 KB
testcase_37 AC 210 ms
6,944 KB
testcase_38 AC 208 ms
6,940 KB
testcase_39 AC 474 ms
6,944 KB
testcase_40 AC 423 ms
6,940 KB
testcase_41 AC 377 ms
6,940 KB
testcase_42 AC 487 ms
6,944 KB
testcase_43 AC 127 ms
6,940 KB
testcase_44 AC 479 ms
6,944 KB
testcase_45 AC 210 ms
6,944 KB
testcase_46 AC 364 ms
6,940 KB
testcase_47 AC 215 ms
6,940 KB
testcase_48 AC 230 ms
6,940 KB
testcase_49 AC 133 ms
6,944 KB
testcase_50 AC 136 ms
6,944 KB
testcase_51 AC 445 ms
6,944 KB
testcase_52 AC 456 ms
6,944 KB
testcase_53 AC 486 ms
6,944 KB
testcase_54 AC 423 ms
6,940 KB
testcase_55 AC 480 ms
6,944 KB
testcase_56 AC 421 ms
6,944 KB
testcase_57 AC 425 ms
6,940 KB
testcase_58 AC 476 ms
6,940 KB
testcase_59 AC 479 ms
6,940 KB
testcase_60 AC 438 ms
6,944 KB
testcase_61 AC 481 ms
6,940 KB
testcase_62 AC 483 ms
6,944 KB
testcase_63 AC 477 ms
6,944 KB
testcase_64 AC 481 ms
6,944 KB
testcase_65 AC 476 ms
6,944 KB
testcase_66 AC 475 ms
6,944 KB
testcase_67 AC 476 ms
6,940 KB
testcase_68 AC 476 ms
6,940 KB
testcase_69 AC 479 ms
6,944 KB
testcase_70 AC 481 ms
6,940 KB
testcase_71 AC 487 ms
6,940 KB
testcase_72 AC 489 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    // 入力 (数珠なので、2 週させる)
    int N, K;
    cin >> N >> K;
    vector<long long> A(N*2), C(N*2);
    for (int i = 0; i < N; ++i) { cin >> A[i]; A[i+N] = A[i]; }
    for (int i = 0; i < N; ++i) { cin >> C[i]; C[i+N] = C[i]; }
    
    // 累積和
    vector<long long> S(N*2+1, 0);
    for (int i = 0; i < N*2; ++i) S[i+1] = S[i] + A[i];
    
    // dp
    vector dp(N*2, vector(N*2+1, bitset<52>(false)));
    for (int l = 0; l < N*2; ++l) dp[l][l+1][C[l]] = true;
    for (int between = 2; between <= N; ++between) {
        for (int l = 0; l + between <= N*2; ++l) {
            int r = l + between;
            for (int m = l+1; m < r; ++m) {
                for (int k = 0; k <= K; ++k) {
                    dp[l][r] |= dp[l][m] & (dp[m][r] << k);
                    dp[l][r] |= dp[l][m] & (dp[m][r] >> k);
                    dp[l][r] |= (dp[l][m] << k) & dp[m][r];
                    dp[l][r] |= (dp[l][m] >> k) & dp[m][r];
                }
            }
        }
    }
    
    // 集計
    long long res = 0;
    for (int l = 0; l <= N; ++l) {
        for (int r = l+1; r <= N*2; ++r) {
            for (int c = 0; c <= 50; ++c) {
                if (dp[l][r][c]) res = max(res, S[r] - S[l]);
            }
        }
    }
    cout << res << endl;
}
0