結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 10 ms
5,504 KB
testcase_03 WA -
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 8 ms
5,760 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 10 ms
5,632 KB
testcase_11 AC 3,176 ms
39,296 KB
testcase_12 AC 369 ms
38,528 KB
testcase_13 AC 3,154 ms
39,296 KB
testcase_14 AC 1,602 ms
39,424 KB
testcase_15 AC 1,056 ms
39,296 KB
testcase_16 AC 2,683 ms
39,296 KB
testcase_17 AC 1,588 ms
39,296 KB
testcase_18 AC 2,694 ms
39,296 KB
testcase_19 AC 359 ms
37,888 KB
testcase_20 AC 1,592 ms
39,296 KB
testcase_21 AC 3,149 ms
39,296 KB
testcase_22 AC 1,595 ms
39,296 KB
testcase_23 AC 1,047 ms
39,168 KB
testcase_24 AC 1,069 ms
39,296 KB
testcase_25 AC 1,049 ms
39,424 KB
testcase_26 AC 1,059 ms
39,296 KB
testcase_27 AC 2,226 ms
39,296 KB
testcase_28 AC 3,188 ms
39,424 KB
testcase_29 AC 2,756 ms
39,296 KB
testcase_30 AC 1,631 ms
39,296 KB
testcase_31 AC 1,617 ms
39,296 KB
testcase_32 AC 3,188 ms
39,296 KB
testcase_33 AC 1,087 ms
39,296 KB
testcase_34 AC 2,281 ms
39,296 KB
testcase_35 AC 1,641 ms
39,296 KB
testcase_36 AC 1,639 ms
39,424 KB
testcase_37 AC 1,077 ms
39,296 KB
testcase_38 AC 1,091 ms
39,424 KB
testcase_39 AC 3,192 ms
39,296 KB
testcase_40 AC 2,739 ms
39,424 KB
testcase_41 AC 2,282 ms
39,296 KB
testcase_42 AC 3,208 ms
39,296 KB
testcase_43 AC 367 ms
38,528 KB
testcase_44 AC 3,227 ms
39,296 KB
testcase_45 AC 1,091 ms
39,296 KB
testcase_46 AC 2,274 ms
39,296 KB
testcase_47 AC 1,071 ms
39,296 KB
testcase_48 AC 1,066 ms
39,296 KB
testcase_49 AC 365 ms
38,528 KB
testcase_50 AC 369 ms
38,528 KB
testcase_51 AC 2,718 ms
39,296 KB
testcase_52 AC 2,734 ms
39,296 KB
testcase_53 AC 3,177 ms
39,424 KB
testcase_54 AC 2,719 ms
39,296 KB
testcase_55 AC 3,174 ms
39,296 KB
testcase_56 AC 2,744 ms
39,296 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 3,266 ms
39,296 KB
testcase_62 AC 3,306 ms
39,296 KB
testcase_63 AC 3,263 ms
39,424 KB
testcase_64 AC 3,246 ms
39,296 KB
testcase_65 AC 3,281 ms
39,296 KB
testcase_66 AC 3,240 ms
39,424 KB
testcase_67 AC 3,266 ms
39,296 KB
testcase_68 AC 3,261 ms
39,424 KB
testcase_69 AC 3,281 ms
39,296 KB
testcase_70 AC 3,251 ms
39,296 KB
testcase_71 AC 3,244 ms
39,296 KB
testcase_72 AC 3,234 ms
39,424 KB
権限があれば一括ダウンロードができます

ソースコード

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));
    }
    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