結果

問題 No.2423 Merge Stones
ユーザー t98slidert98slider
提出日時 2023-08-14 20:11:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,403 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 178,400 KB
実行使用メモリ 317,440 KB
最終ジャッジ日時 2024-11-22 20:37:43
合計ジャッジ時間 164,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 3 ms
165,540 KB
testcase_02 AC 3 ms
13,644 KB
testcase_03 AC 2 ms
165,408 KB
testcase_04 AC 2 ms
13,640 KB
testcase_05 AC 2 ms
165,412 KB
testcase_06 AC 3 ms
13,636 KB
testcase_07 AC 2 ms
165,412 KB
testcase_08 AC 2 ms
13,644 KB
testcase_09 AC 2 ms
165,540 KB
testcase_10 AC 3 ms
13,644 KB
testcase_11 TLE -
testcase_12 AC 1,584 ms
317,312 KB
testcase_13 AC 1,588 ms
165,540 KB
testcase_14 AC 1,557 ms
317,184 KB
testcase_15 AC 1,556 ms
165,668 KB
testcase_16 AC 1,538 ms
317,440 KB
testcase_17 AC 1,541 ms
165,412 KB
testcase_18 AC 1,554 ms
317,312 KB
testcase_19 AC 1,544 ms
165,540 KB
testcase_20 AC 1,544 ms
317,312 KB
testcase_21 AC 1,551 ms
165,664 KB
testcase_22 AC 1,547 ms
317,440 KB
testcase_23 AC 1,545 ms
165,412 KB
testcase_24 AC 1,549 ms
317,440 KB
testcase_25 AC 1,559 ms
165,540 KB
testcase_26 AC 1,570 ms
317,312 KB
testcase_27 AC 1,554 ms
165,412 KB
testcase_28 AC 1,576 ms
165,668 KB
testcase_29 AC 1,554 ms
165,540 KB
testcase_30 AC 1,556 ms
165,668 KB
testcase_31 AC 1,574 ms
158,592 KB
testcase_32 AC 1,566 ms
158,720 KB
testcase_33 AC 1,552 ms
158,848 KB
testcase_34 AC 1,852 ms
158,720 KB
testcase_35 AC 1,685 ms
158,720 KB
testcase_36 AC 1,564 ms
158,720 KB
testcase_37 AC 1,568 ms
158,720 KB
testcase_38 AC 1,553 ms
158,720 KB
testcase_39 AC 1,562 ms
158,720 KB
testcase_40 AC 1,554 ms
158,720 KB
testcase_41 AC 1,555 ms
158,720 KB
testcase_42 AC 1,561 ms
158,720 KB
testcase_43 AC 1,558 ms
158,720 KB
testcase_44 AC 1,577 ms
158,720 KB
testcase_45 AC 1,570 ms
158,720 KB
testcase_46 AC 1,562 ms
158,720 KB
testcase_47 AC 1,549 ms
158,592 KB
testcase_48 AC 1,555 ms
158,720 KB
testcase_49 AC 1,564 ms
158,720 KB
testcase_50 AC 1,591 ms
158,848 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,606 ms
158,592 KB
testcase_57 AC 1,609 ms
158,720 KB
testcase_58 AC 1,683 ms
158,720 KB
testcase_59 AC 1,611 ms
158,720 KB
testcase_60 AC 1,617 ms
158,592 KB
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector<int> a(n), c(n);
    cin >> a >> c;
    a.insert(a.end(), a.begin(), a.end());
    c.insert(c.end(), c.begin(), c.end());
    for(auto &&v : c) v--;
    vector<vector<vector<ll>>> dp(2 * n + 1, vector<vector<ll>>(2 * n + 1, vector<ll>(50, -(1ll << 60))));
    int n2 = n * 2;
    for(int i = 0; i < n2; i++) dp[i][i + 1][c[i]] = a[i];
    ll ans = *max_element(a.begin(), a.end());
    for(int len = 2; len <= n; len++){
        for(int l = 0; l + len <= n2; l++){
            int r = l + len;
            for(int m = l + 1; m < r; m++){
                for(int i = 0; i < 50; i++){
                    int jr = min(50, i + k + 1);
                    if(dp[l][m][i] < 0) continue;
                    for(int j = max(0, i - k); j < jr; j++){
                        dp[l][r][i] = max(dp[l][r][i], dp[l][m][i] + dp[m][r][j]);
                        dp[l][r][j] = max(dp[l][r][j], dp[l][m][i] + dp[m][r][j]);
                        ans = max(ans, dp[l][r][i]);
                        ans = max(ans, dp[l][r][j]);
                    }
                }
            }
        }
    }
    cout << ans << '\n';
}
0