結果

問題 No.484 収穫
ユーザー momoyuumomoyuu
提出日時 2024-09-30 00:10:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 667 ms / 3,000 ms
コード長 1,583 bytes
コンパイル時間 1,128 ms
コンパイル使用メモリ 101,344 KB
実行使用メモリ 222,336 KB
最終ジャッジ日時 2024-09-30 00:10:28
合計ジャッジ時間 9,942 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 638 ms
222,208 KB
testcase_13 AC 667 ms
222,208 KB
testcase_14 AC 646 ms
222,208 KB
testcase_15 AC 655 ms
222,080 KB
testcase_16 AC 633 ms
222,208 KB
testcase_17 AC 648 ms
222,208 KB
testcase_18 AC 634 ms
222,208 KB
testcase_19 AC 664 ms
222,336 KB
testcase_20 AC 638 ms
222,208 KB
testcase_21 AC 640 ms
222,208 KB
testcase_22 AC 667 ms
222,080 KB
testcase_23 AC 656 ms
222,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<ll> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    ll ans = 1e18;
    vector<vector<vector<ll>>> dp(n,vector<vector<ll>>(n,vector<ll>(2,1e18)));
    dp[0][n-1][0] = -1;
    dp[0][n-1][1] = -1;
    
    for(int i = n;i>0;i--){
        for(int j = 0;j<n;j++){
            int le = j;
            int ri = le + i - 1;
            if(ri>=n) continue;
            for(int t = 0;t<2;t++){
                int p;
                if(t==0) p = le - 1;
                else p = ri + 1;
                for(int nt = 0;nt<2;nt++){
                    int np;
                    if(nt==0) np = le;
                    else np = ri;
                    ll ti = dp[le][ri][t];
                    ti += abs(p-np);
                    if(nt==0) ti = max(ti,a[le]);
                    else ti = max(ti,a[ri]);
                    if(nt==0){
                        if(ri==le){
                            ans = min(ans,ti);
                        }else{
                            dp[le+1][ri][nt] = min(dp[le+1][ri][nt],ti);
                        }
                    }else{
                        if(ri==le){
                            ans = min(ans,ti);
                        }else{
                            dp[le][ri-1][nt] = min(dp[le][ri-1][nt],ti);
                        }
                    }
                }
            }
        }
    }

    cout<<ans<<endl;
    
}

0