結果

問題 No.2423 Merge Stones
ユーザー umimelumimel
提出日時 2023-08-12 14:31:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,896 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 177,820 KB
実行使用メモリ 238,976 KB
最終ジャッジ日時 2024-11-19 19:55:25
合計ジャッジ時間 224,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
124,672 KB
testcase_01 AC 4 ms
10,496 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
124,800 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
124,800 KB
testcase_06 AC 3 ms
13,640 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 AC 3 ms
13,640 KB
testcase_09 AC 2 ms
10,496 KB
testcase_10 AC 3 ms
13,640 KB
testcase_11 TLE -
testcase_12 AC 2,834 ms
126,244 KB
testcase_13 AC 2,982 ms
124,800 KB
testcase_14 AC 2,870 ms
126,368 KB
testcase_15 AC 2,836 ms
124,800 KB
testcase_16 AC 3,022 ms
126,240 KB
testcase_17 AC 2,956 ms
124,672 KB
testcase_18 AC 2,990 ms
126,240 KB
testcase_19 AC 2,902 ms
124,800 KB
testcase_20 AC 2,947 ms
126,244 KB
testcase_21 AC 3,180 ms
124,800 KB
testcase_22 AC 3,041 ms
126,368 KB
testcase_23 AC 2,891 ms
124,672 KB
testcase_24 AC 2,881 ms
126,372 KB
testcase_25 AC 3,056 ms
238,720 KB
testcase_26 AC 2,889 ms
124,800 KB
testcase_27 AC 2,942 ms
238,976 KB
testcase_28 AC 3,024 ms
124,672 KB
testcase_29 AC 3,002 ms
238,720 KB
testcase_30 AC 2,860 ms
124,800 KB
testcase_31 AC 2,959 ms
238,976 KB
testcase_32 AC 3,063 ms
119,552 KB
testcase_33 AC 2,926 ms
119,424 KB
testcase_34 AC 2,886 ms
119,552 KB
testcase_35 AC 2,875 ms
119,424 KB
testcase_36 AC 2,897 ms
119,424 KB
testcase_37 AC 2,963 ms
119,424 KB
testcase_38 AC 2,977 ms
119,424 KB
testcase_39 AC 3,011 ms
119,424 KB
testcase_40 AC 2,961 ms
119,552 KB
testcase_41 AC 2,917 ms
119,424 KB
testcase_42 AC 3,011 ms
119,552 KB
testcase_43 AC 2,827 ms
119,552 KB
testcase_44 AC 3,059 ms
119,424 KB
testcase_45 AC 2,927 ms
119,424 KB
testcase_46 AC 3,026 ms
119,424 KB
testcase_47 AC 2,962 ms
119,552 KB
testcase_48 AC 2,949 ms
119,424 KB
testcase_49 AC 2,907 ms
119,424 KB
testcase_50 AC 2,895 ms
119,552 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 2,941 ms
119,552 KB
testcase_57 AC 2,959 ms
119,552 KB
testcase_58 AC 3,080 ms
119,552 KB
testcase_59 AC 3,127 ms
119,424 KB
testcase_60 AC 3,016 ms
119,424 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>>> ldp(N, vector<vector<ll>>(N, vector<ll>(50, -1)));
    vector<vector<vector<ll>>> rdp(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) ldp[i][i][c]=max(ldp[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) rdp[i][i][c]=max(rdp[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]の解を求める
            ll 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 && max(ldp[(mmod+1)%N][r][c], rdp[(mmod+1)%N][r][c])!=-1){
                        dp[l][r][c] = dp[l][mmod][c]+max(ldp[(mmod+1)%N][r][c], rdp[(mmod+1)%N][r][c]);
                    }
                    if(dp[(mmod+1)%N][r][c]!=-1 && max(ldp[l][mmod][c], rdp[l][mmod][c])!=-1){
                        dp[l][r][c] = dp[(mmod+1)%N][r][c]+max(ldp[l][mmod][c], rdp[l][mmod][c]);
                    }
                }
            }

            //ldpの更新
            for(int c=0; c<50; c++){
                for(int i=0; i<=K; i++){
                    if(c-i>=0) ldp[l][r][c]=max(ldp[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) rdp[l][r][c]=max(rdp[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