結果

問題 No.2423 Merge Stones
ユーザー FplusFplusFFplusFplusF
提出日時 2023-08-12 15:00:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,341 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 210,128 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-11-19 22:39:52
合計ジャッジ時間 315,211 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
12,068 KB
testcase_01 AC 94 ms
46,500 KB
testcase_02 AC 48 ms
46,368 KB
testcase_03 AC 40 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 8 ms
13,644 KB
testcase_06 AC 39 ms
10,496 KB
testcase_07 AC 28 ms
44,928 KB
testcase_08 AC 4 ms
10,496 KB
testcase_09 AC 3 ms
44,928 KB
testcase_10 AC 45 ms
10,496 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
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>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
ll n,k;
vector<ll> a,c;
vector<vector<vector<ll>>> dp;
ll f(ll x,ll l,ll r){
    if(dp[x][l][r]!=-1) return dp[x][l][r];
    if(l==r){
        if(x==c[l]) return dp[x][l][r]=a[l];
        else return dp[x][l][r]=-INF;
    }
    dp[x][l][r]=-INF;
    for(ll y=max(0ll,x-k);y<=min(50ll,x+k);y++){
        for(ll k=l;k!=r;k=(k+1)%n){//yabai
            chmax(dp[x][l][r],f(x,l,k)+f(y,(k+1)%n,r));
            chmax(dp[x][l][r],f(y,l,k)+f(x,(k+1)%n,r));
        }
    }
    return dp[x][l][r];
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n >> k;
    a.resize(n);
    c.resize(n);
    rep(i,n) cin >> a[i];
    rep(i,n) cin >> c[i];
    dp.resize(51);
    rep(i,51){
        dp[i].resize(n);
        rep(j,n){
            dp[i][j].resize(n,-1);
        }
    }
    ll ans=0;
    rep(i,51){
        rep(j,n){
            rep(k,n){
                chmax(ans,f(i,j,k));
            }
        }
    }
    cout << ans << '\n';
}
0