結果

問題 No.484 収穫
ユーザー nebukuro09nebukuro09
提出日時 2017-05-10 17:48:27
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 948 ms / 3,000 ms
コード長 1,338 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 117,932 KB
実行使用メモリ 133,500 KB
最終ジャッジ日時 2024-06-12 19:07:38
合計ジャッジ時間 12,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 923 ms
133,500 KB
testcase_13 AC 922 ms
132,636 KB
testcase_14 AC 929 ms
132,464 KB
testcase_15 AC 923 ms
132,704 KB
testcase_16 AC 948 ms
132,308 KB
testcase_17 AC 919 ms
132,408 KB
testcase_18 AC 753 ms
132,672 KB
testcase_19 AC 883 ms
132,020 KB
testcase_20 AC 891 ms
133,216 KB
testcase_21 AC 889 ms
132,700 KB
testcase_22 AC 946 ms
132,400 KB
testcase_23 AC 941 ms
131,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    immutable int INF = 2 * 10^^9;
    
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int);

    if (N == 1) {
        writeln(A[0]);
        return;
    }

    /*
      dp[l][r][left or right]: 
      未訪問の区間がl~rで、最後に訪問済のノードが l-1 or r+1 のときの最小コスト
     */
    auto dp = new int[][][](N, N, 2);
    foreach (i; 0..N) foreach (j; 0..N) fill(dp[i][j], INF);
    dp[1][N-1][0] = A[0];
    dp[0][N-2][1] = A[N-1];

    foreach (len; iota(N-1, 1, -1)) {
        foreach (i; 0..N-len+1) {
            int j = i + len - 1;
            int ltol = max(dp[i][j][0] + 1, A[i]);
            int rtol = max(dp[i][j][1] + j - i, A[i]);
            int ltor = max(dp[i][j][0] + j - i, A[j]);
            int rtor = max(dp[i][j][1] + 1, A[j]);
            dp[i+1][j][0] = min(dp[i+1][j][0], min(ltol, rtol));
            dp[i][j-1][1] = min(dp[i][j-1][1], min(ltor, rtor));
        }
    }

    
    int ans = INF;
    foreach (i; 0..N) {
        ans = min(ans, max(dp[i][i][0]+1, A[i]));
        ans = min(ans, max(dp[i][i][1]+1, A[i]));
    }

    ans.writeln;
}
0