結果

問題 No.2423 Merge Stones
ユーザー FplusFplusFFplusFplusF
提出日時 2023-08-12 15:24:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,163 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 200,668 KB
実行使用メモリ 38,208 KB
最終ジャッジ日時 2024-11-20 01:54:30
合計ジャッジ時間 314,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
23,204 KB
testcase_01 AC 87 ms
13,636 KB
testcase_02 AC 46 ms
13,636 KB
testcase_03 AC 38 ms
13,768 KB
testcase_04 AC 3 ms
13,640 KB
testcase_05 AC 9 ms
13,764 KB
testcase_06 AC 38 ms
27,044 KB
testcase_07 AC 27 ms
13,640 KB
testcase_08 AC 6 ms
30,244 KB
testcase_09 AC 4 ms
13,644 KB
testcase_10 AC 44 ms
13,768 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;
ll a[300],c[300];
ll dp[51][300][300];
ll f(ll x,ll l,ll r){
    if(dp[x][l][r]!=0) 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){
            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;
    rep(i,n) cin >> a[i];
    rep(i,n) cin >> c[i];
    ll ans=0;
    rep(i,51){
        rep(j,n){
            rep(k,n){
                chmax(ans,f(i,j,k));
            }
        }
    }
    cout << ans << '\n';
}
0