結果

問題 No.2423 Merge Stones
ユーザー drken1215drken1215
提出日時 2023-08-12 19:32:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,149 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 208,736 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-20 10:06:05
合計ジャッジ時間 28,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 510 ms
6,816 KB
testcase_12 AC 132 ms
6,820 KB
testcase_13 AC 520 ms
6,816 KB
testcase_14 AC 323 ms
6,820 KB
testcase_15 AC 229 ms
6,824 KB
testcase_16 AC 450 ms
6,820 KB
testcase_17 AC 325 ms
6,816 KB
testcase_18 AC 494 ms
6,816 KB
testcase_19 AC 143 ms
6,820 KB
testcase_20 AC 323 ms
6,820 KB
testcase_21 AC 512 ms
6,820 KB
testcase_22 AC 321 ms
6,816 KB
testcase_23 AC 224 ms
6,820 KB
testcase_24 AC 223 ms
6,816 KB
testcase_25 AC 227 ms
6,816 KB
testcase_26 AC 221 ms
6,820 KB
testcase_27 AC 381 ms
6,816 KB
testcase_28 AC 514 ms
6,816 KB
testcase_29 AC 445 ms
6,816 KB
testcase_30 AC 322 ms
6,816 KB
testcase_31 AC 319 ms
6,816 KB
testcase_32 AC 512 ms
6,816 KB
testcase_33 AC 231 ms
6,816 KB
testcase_34 AC 394 ms
6,816 KB
testcase_35 AC 323 ms
6,820 KB
testcase_36 AC 323 ms
6,820 KB
testcase_37 AC 222 ms
6,820 KB
testcase_38 AC 225 ms
6,816 KB
testcase_39 AC 518 ms
6,820 KB
testcase_40 AC 450 ms
6,816 KB
testcase_41 AC 385 ms
6,816 KB
testcase_42 AC 521 ms
6,816 KB
testcase_43 AC 131 ms
6,816 KB
testcase_44 AC 512 ms
6,820 KB
testcase_45 AC 223 ms
6,816 KB
testcase_46 AC 392 ms
6,820 KB
testcase_47 AC 225 ms
6,820 KB
testcase_48 AC 223 ms
6,816 KB
testcase_49 AC 136 ms
6,820 KB
testcase_50 AC 135 ms
6,816 KB
testcase_51 AC 453 ms
6,816 KB
testcase_52 AC 446 ms
6,816 KB
testcase_53 AC 501 ms
6,820 KB
testcase_54 AC 452 ms
6,820 KB
testcase_55 AC 511 ms
6,816 KB
testcase_56 AC 452 ms
6,820 KB
testcase_57 AC 449 ms
6,816 KB
testcase_58 AC 516 ms
6,820 KB
testcase_59 AC 515 ms
6,816 KB
testcase_60 AC 444 ms
6,820 KB
testcase_61 AC 509 ms
6,816 KB
testcase_62 AC 509 ms
6,824 KB
testcase_63 AC 507 ms
6,816 KB
testcase_64 AC 517 ms
6,820 KB
testcase_65 AC 508 ms
6,816 KB
testcase_66 AC 516 ms
6,816 KB
testcase_67 AC 515 ms
6,820 KB
testcase_68 AC 520 ms
6,820 KB
testcase_69 AC 508 ms
6,820 KB
testcase_70 AC 499 ms
6,816 KB
testcase_71 AC 501 ms
6,816 KB
testcase_72 AC 508 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    // 入力
    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
    long long res = 0;
    vector dp(N*2+1, vector(N*2+2, bitset<52>(false)));
    for (int l = 0; l < N*2; ++l) dp[l][l+1][C[l]] = true;
    for (int b = 2; b <= N; ++b) {
        for (int l = 0; l < N*2 && l+b <= N*2; ++l) {
            int r = l + b;
            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];
                }
            }
            for (int c = 0; c <= 50; ++c) if (dp[l][r][c]) res = max(res, S[r] - S[l]);
        }
    }
    cout << res << endl;
}
0