結果

問題 No.2423 Merge Stones
ユーザー FplusFplusFFplusFplusF
提出日時 2023-08-12 15:29:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,735 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 200,960 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-11-20 02:53:20
合計ジャッジ時間 241,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
44,416 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2,040 ms
44,672 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 WA -
testcase_34 TLE -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 WA -
testcase_44 TLE -
testcase_45 WA -
testcase_46 TLE -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 629 ms
77,568 KB
testcase_50 WA -
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++){
        chmax(dp[x][l][r],f(x,l,l)+f(y,(l+1)%n,r));
        chmax(dp[x][l][r],f(x,l,(r-1+n)%n)+f(y,r,r));
        chmax(dp[x][l][r],f(y,l,l)+f(x,(l+1)%n,r));
        chmax(dp[x][l][r],f(y,l,(r-1+n)%n)+f(x,r,r));
        if(2<=r-l){
            chmax(dp[x][l][r],f(x,l,l)+f(y,(l+2)%n,r));
            chmax(dp[x][l][r],f(x,l,(r-2+n)%n)+f(y,r,r));
            chmax(dp[x][l][r],f(y,l,l)+f(x,(l+2)%n,r));
            chmax(dp[x][l][r],f(y,l,(r-2+n)%n)+f(x,r,r));
        }
        if(3<=r-l){
            chmax(dp[x][l][r],f(x,l,l)+f(y,(l+3)%n,r));
            chmax(dp[x][l][r],f(x,l,(r-3+n)%n)+f(y,r,r));
            chmax(dp[x][l][r],f(y,l,l)+f(x,(l+3)%n,r));
            chmax(dp[x][l][r],f(y,l,(r-3+n)%n)+f(x,r,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,n){
        rep(j,n){
            rep(k,n){
                chmax(ans,f(c[i],j,k));
            }
        }
    }
    cout << ans << '\n';
}
0