結果

問題 No.2423 Merge Stones
ユーザー t98slidert98slider
提出日時 2023-08-14 20:54:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 4,000 ms
コード長 1,398 bytes
コンパイル時間 1,603 ms
コンパイル使用メモリ 173,184 KB
実行使用メモリ 9,192 KB
最終ジャッジ日時 2024-05-02 09:01:08
合計ジャッジ時間 6,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 55 ms
9,120 KB
testcase_12 AC 54 ms
8,988 KB
testcase_13 AC 54 ms
9,012 KB
testcase_14 AC 59 ms
8,968 KB
testcase_15 AC 56 ms
9,068 KB
testcase_16 AC 56 ms
9,180 KB
testcase_17 AC 60 ms
8,956 KB
testcase_18 AC 59 ms
9,180 KB
testcase_19 AC 54 ms
9,024 KB
testcase_20 AC 55 ms
9,112 KB
testcase_21 AC 59 ms
8,960 KB
testcase_22 AC 55 ms
9,040 KB
testcase_23 AC 55 ms
9,000 KB
testcase_24 AC 60 ms
8,960 KB
testcase_25 AC 54 ms
9,012 KB
testcase_26 AC 54 ms
8,960 KB
testcase_27 AC 53 ms
9,060 KB
testcase_28 AC 53 ms
9,008 KB
testcase_29 AC 57 ms
9,088 KB
testcase_30 AC 54 ms
9,096 KB
testcase_31 AC 53 ms
8,988 KB
testcase_32 AC 56 ms
8,960 KB
testcase_33 AC 54 ms
8,960 KB
testcase_34 AC 52 ms
9,140 KB
testcase_35 AC 52 ms
8,960 KB
testcase_36 AC 53 ms
9,112 KB
testcase_37 AC 53 ms
8,968 KB
testcase_38 AC 51 ms
9,120 KB
testcase_39 AC 53 ms
9,028 KB
testcase_40 AC 54 ms
9,060 KB
testcase_41 AC 55 ms
8,960 KB
testcase_42 AC 53 ms
9,004 KB
testcase_43 AC 54 ms
9,124 KB
testcase_44 AC 54 ms
9,056 KB
testcase_45 AC 54 ms
9,124 KB
testcase_46 AC 54 ms
8,952 KB
testcase_47 AC 57 ms
8,960 KB
testcase_48 AC 55 ms
9,084 KB
testcase_49 AC 53 ms
9,084 KB
testcase_50 AC 54 ms
9,088 KB
testcase_51 AC 55 ms
9,176 KB
testcase_52 AC 55 ms
8,944 KB
testcase_53 AC 59 ms
9,088 KB
testcase_54 AC 55 ms
9,048 KB
testcase_55 AC 58 ms
9,040 KB
testcase_56 AC 54 ms
9,032 KB
testcase_57 AC 54 ms
9,184 KB
testcase_58 AC 56 ms
9,060 KB
testcase_59 AC 54 ms
9,052 KB
testcase_60 AC 59 ms
8,960 KB
testcase_61 AC 60 ms
8,960 KB
testcase_62 AC 57 ms
9,132 KB
testcase_63 AC 60 ms
8,960 KB
testcase_64 AC 57 ms
8,948 KB
testcase_65 AC 58 ms
9,192 KB
testcase_66 AC 57 ms
9,088 KB
testcase_67 AC 58 ms
8,964 KB
testcase_68 AC 59 ms
9,056 KB
testcase_69 AC 59 ms
8,960 KB
testcase_70 AC 59 ms
8,972 KB
testcase_71 AC 57 ms
9,128 KB
testcase_72 AC 58 ms
9,132 KB
権限があれば一括ダウンロードができます

ソースコード

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, n2;
    cin >> n >> k;
    n2 = 2 * n;
    vector<int> a(n), c(n);
    ll sa[n2 + 1] = {}, dp[n2][n2 + 1] = {}, dp2[n2][n2 + 1] = {}, S;
    cin >> a >> c;
    a.insert(a.end(), a.begin(), a.end());
    c.insert(c.end(), c.begin(), c.end());
    for(int i = 0; i < n2; i++){
        sa[i + 1] = sa[i] + a[i];
        dp[i][i + 1] = dp2[i][i + 1] = S = 1ll << --c[i];
        for(int j = 1; j <= k; j++){
            dp2[i][i + 1] |= S >> j;
            dp2[i][i + 1] |= S << j;
        }
    }
    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++){
                dp[l][r] |= dp[l][m] & dp2[m][r];
                dp[l][r] |= dp2[l][m] & dp[m][r];
            }
            if(dp[l][r]){
                ans = max(ans, sa[r] - sa[l]);
                dp2[l][r] = dp[l][r];
                for(int i = 1; i <= k; i++){
                    dp2[l][r] |= dp[l][r] >> i;
                    dp2[l][r] |= dp[l][r] << i;
                }
            }
        }
    }
    cout << ans << '\n';
}
0