結果

問題 No.2423 Merge Stones
ユーザー drken1215drken1215
提出日時 2023-08-12 19:37:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 514 ms / 4,000 ms
コード長 1,348 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 208,960 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-20 10:11:49
合計ジャッジ時間 27,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 495 ms
6,820 KB
testcase_12 AC 131 ms
6,816 KB
testcase_13 AC 499 ms
6,816 KB
testcase_14 AC 309 ms
6,816 KB
testcase_15 AC 219 ms
6,820 KB
testcase_16 AC 440 ms
6,816 KB
testcase_17 AC 308 ms
6,816 KB
testcase_18 AC 439 ms
6,820 KB
testcase_19 AC 131 ms
6,816 KB
testcase_20 AC 309 ms
6,820 KB
testcase_21 AC 508 ms
6,820 KB
testcase_22 AC 310 ms
6,820 KB
testcase_23 AC 216 ms
6,816 KB
testcase_24 AC 216 ms
6,816 KB
testcase_25 AC 261 ms
6,816 KB
testcase_26 AC 217 ms
6,816 KB
testcase_27 AC 375 ms
6,820 KB
testcase_28 AC 494 ms
6,820 KB
testcase_29 AC 442 ms
6,820 KB
testcase_30 AC 324 ms
6,820 KB
testcase_31 AC 312 ms
6,816 KB
testcase_32 AC 493 ms
6,816 KB
testcase_33 AC 225 ms
6,816 KB
testcase_34 AC 375 ms
6,816 KB
testcase_35 AC 307 ms
6,816 KB
testcase_36 AC 316 ms
6,816 KB
testcase_37 AC 220 ms
6,816 KB
testcase_38 AC 220 ms
6,816 KB
testcase_39 AC 506 ms
6,816 KB
testcase_40 AC 432 ms
6,820 KB
testcase_41 AC 378 ms
6,816 KB
testcase_42 AC 497 ms
6,816 KB
testcase_43 AC 132 ms
6,816 KB
testcase_44 AC 505 ms
6,816 KB
testcase_45 AC 223 ms
6,816 KB
testcase_46 AC 378 ms
6,816 KB
testcase_47 AC 231 ms
6,816 KB
testcase_48 AC 225 ms
6,820 KB
testcase_49 AC 129 ms
6,816 KB
testcase_50 AC 130 ms
6,816 KB
testcase_51 AC 443 ms
6,820 KB
testcase_52 AC 438 ms
6,816 KB
testcase_53 AC 514 ms
6,816 KB
testcase_54 AC 449 ms
6,816 KB
testcase_55 AC 510 ms
6,816 KB
testcase_56 AC 451 ms
6,816 KB
testcase_57 AC 449 ms
6,816 KB
testcase_58 AC 508 ms
6,816 KB
testcase_59 AC 504 ms
6,820 KB
testcase_60 AC 441 ms
6,816 KB
testcase_61 AC 508 ms
6,820 KB
testcase_62 AC 505 ms
6,820 KB
testcase_63 AC 513 ms
6,816 KB
testcase_64 AC 492 ms
6,816 KB
testcase_65 AC 502 ms
6,816 KB
testcase_66 AC 499 ms
6,816 KB
testcase_67 AC 513 ms
6,816 KB
testcase_68 AC 494 ms
6,816 KB
testcase_69 AC 501 ms
6,816 KB
testcase_70 AC 500 ms
6,816 KB
testcase_71 AC 506 ms
6,816 KB
testcase_72 AC 494 ms
6,816 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