結果

問題 No.2423 Merge Stones
ユーザー umimelumimel
提出日時 2023-08-12 14:39:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,715 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 177,884 KB
実行使用メモリ 161,664 KB
最終ジャッジ日時 2024-11-19 20:39:49
合計ジャッジ時間 218,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 3 ms
86,016 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
86,016 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
86,016 KB
testcase_06 AC 3 ms
10,496 KB
testcase_07 AC 2 ms
86,144 KB
testcase_08 AC 2 ms
13,768 KB
testcase_09 AC 2 ms
10,496 KB
testcase_10 AC 3 ms
13,764 KB
testcase_11 TLE -
testcase_12 AC 2,849 ms
87,844 KB
testcase_13 AC 2,983 ms
161,664 KB
testcase_14 AC 3,005 ms
86,016 KB
testcase_15 AC 2,909 ms
161,664 KB
testcase_16 AC 2,975 ms
86,144 KB
testcase_17 AC 2,850 ms
80,896 KB
testcase_18 AC 2,906 ms
80,768 KB
testcase_19 AC 2,829 ms
80,768 KB
testcase_20 AC 2,879 ms
80,896 KB
testcase_21 AC 2,899 ms
80,768 KB
testcase_22 AC 2,874 ms
80,896 KB
testcase_23 AC 2,868 ms
80,768 KB
testcase_24 AC 2,835 ms
80,768 KB
testcase_25 AC 2,784 ms
80,768 KB
testcase_26 AC 2,881 ms
80,768 KB
testcase_27 AC 2,910 ms
80,768 KB
testcase_28 AC 2,899 ms
80,896 KB
testcase_29 AC 3,117 ms
80,896 KB
testcase_30 AC 2,845 ms
80,768 KB
testcase_31 AC 2,926 ms
80,768 KB
testcase_32 AC 2,935 ms
80,896 KB
testcase_33 AC 2,808 ms
80,896 KB
testcase_34 AC 2,907 ms
80,768 KB
testcase_35 AC 2,845 ms
80,768 KB
testcase_36 AC 2,858 ms
80,768 KB
testcase_37 AC 2,903 ms
80,768 KB
testcase_38 AC 2,948 ms
80,896 KB
testcase_39 AC 2,989 ms
80,768 KB
testcase_40 AC 3,006 ms
80,896 KB
testcase_41 AC 2,903 ms
80,768 KB
testcase_42 AC 2,959 ms
80,896 KB
testcase_43 AC 2,846 ms
80,896 KB
testcase_44 AC 2,956 ms
80,768 KB
testcase_45 AC 2,865 ms
80,768 KB
testcase_46 AC 2,887 ms
80,896 KB
testcase_47 AC 2,806 ms
80,896 KB
testcase_48 AC 2,860 ms
80,768 KB
testcase_49 AC 2,928 ms
80,768 KB
testcase_50 AC 2,891 ms
80,896 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 3,007 ms
80,896 KB
testcase_57 AC 3,031 ms
80,768 KB
testcase_58 AC 2,967 ms
80,896 KB
testcase_59 AC 2,980 ms
80,768 KB
testcase_60 AC 2,943 ms
80,768 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;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60;
const int IINF = (1 << 30) - 1;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int N, K; cin >> N >> K;
    vector<ll> A(N);
    vector<int> C(N);
    for(int i=0; i<N; i++) cin >> A[i];
    for(int i=0; i<N; i++){
        cin >> C[i];
        C[i]--;
    }

    vector<vector<vector<ll>>> dp(N, vector<vector<ll>>(N, vector<ll>(50, -1)));
    vector<vector<vector<ll>>> idp(N, vector<vector<ll>>(N, vector<ll>(50, -1)));
    //初期化
    for(int i=0; i<N; i++){
        dp[i][i][C[i]] = A[i];

        for(int c=0; c<50; c++){
            for(int j=0; j<=K; j++){
                if(c-j>=0) idp[i][i][c]=max(idp[i][i][c], dp[i][i][c-j]);
            }
        }
        //rdpの更新
        for(int c=0; c<50; c++){
            for(int j=0; j<=K; j++){
                if(c+j<50) idp[i][i][c]=max(idp[i][i][c], dp[i][i][c+j]);
            }
        }
    }

    //遷移
    for(int d=2; d<=N; d++){
        for(int l=0; l<N; l++){
            //[l, (l+d-1)%N]の解を求める
            int r = (l+d-1)%N;
            for(int m=l; m<l+d-1; m++){
                int mmod = m%N;
                //[l, mmod]と[mmod+1, (l+d-1)%N]をマージ
                for(int c=0; c<50; c++){
                    if(dp[l][mmod][c]!=-1 && idp[(mmod+1)%N][r][c]!=-1){
                        dp[l][r][c] = dp[l][mmod][c]+idp[(mmod+1)%N][r][c];
                    }
                    if(dp[(mmod+1)%N][r][c]!=-1 && idp[l][mmod][c]!=-1){
                        dp[l][r][c] = dp[(mmod+1)%N][r][c]+idp[l][mmod][c];
                    }
                }
            }

            //ldpの更新
            for(int c=0; c<50; c++){
                for(int i=0; i<=K; i++){
                    if(c-i>=0) idp[l][r][c]=max(idp[l][r][c], dp[l][r][c-i]);
                }
            }
            //rdpの更新
            for(int c=0; c<50; c++){
                for(int i=0; i<=K; i++){
                    if(c+i<50) idp[l][r][c]=max(idp[l][r][c], dp[l][r][c+i]);
                }
            }
        }
    }

    ll ans = -LINF;
    for(int l=0; l<N; l++) for(int r=0; r<N; r++) for(int c=0; c<50; c++){
        ans = max(ans, dp[l][r][c]);
    }

    cout << ans << endl;
}
0