結果

問題 No.484 収穫
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-08 22:45:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 898 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 154,652 KB
最終ジャッジ日時 2024-09-08 22:45:10
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 70 ms
12,160 KB
testcase_10 AC 71 ms
12,160 KB
testcase_11 AC 71 ms
12,160 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(int(1e6))
input = lambda: sys.stdin.readline().rstrip("\r\n")
MOD = 998244353
INF = int(4e18)


def min2(a: int, b: int) -> int:
    return a if a < b else b


def max2(a: int, b: int) -> int:
    return a if a > b else b


if __name__ == "__main__":
    n = int(input())
    nums = list(map(int, input().split()))

    dp = [[INF] * n for _ in range(n)]
    dp[0][n - 1] = 0
    dp[n - 1][0] = 0
    for w in range(n, 1, -1):
        for i in range(n - w + 1):
            j = i + w - 1
            dp[i][j] = min2(dp[i][j], dp[j][i] + (j - i - 1))
            dp[j][i] = min2(dp[j][i], dp[i][j] + (j - i - 1))
            dp[i + 1][j] = min2(dp[i + 1][j], max2(dp[i][j], nums[i]) + 1)
            dp[j - 1][i] = min2(dp[j - 1][i], max2(dp[j][i], nums[j]) + 1)

    res = INF
    for i in range(n):
        res = min2(res, max2(dp[i][i], nums[i]))
    print(res)
0