結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー GrayCoderGrayCoder
提出日時 2020-06-27 16:16:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 116,924 KB
最終ジャッジ日時 2024-07-05 17:13:53
合計ジャッジ時間 6,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,088 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
52,280 KB
testcase_08 AC 37 ms
52,332 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 47 ms
64,128 KB
testcase_14 AC 48 ms
63,872 KB
testcase_15 AC 48 ms
64,128 KB
testcase_16 AC 48 ms
64,640 KB
testcase_17 AC 48 ms
64,640 KB
testcase_18 AC 47 ms
64,128 KB
testcase_19 AC 47 ms
64,128 KB
testcase_20 AC 47 ms
64,428 KB
testcase_21 AC 48 ms
64,640 KB
testcase_22 AC 47 ms
64,128 KB
testcase_23 AC 114 ms
109,664 KB
testcase_24 AC 114 ms
109,456 KB
testcase_25 AC 111 ms
109,096 KB
testcase_26 AC 113 ms
109,280 KB
testcase_27 AC 115 ms
108,888 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())
    A = list(map(int, input().split()))

    left, right = [A[0]], [A[-1]]
    min_ = A[0]
    for i in range(1, N):
        n = min(min_, A[i])
        left.append(n)
        min_ = n
    min_ = A[-1]
    for i in range(N - 2, -1, -1):
        n = min(min_, A[i])
        right.append(n)
        min_ = n
    right = right[::-1]

    ans = float('inf')
    a = A[:]
    n = min(a)
    while 1:
        if n == float('inf'):
            break
        i = a.index(n)
        if not i or i == N - 1:
            a[i] = float('inf')
        elif a[i-1] == float('inf') or a[i+1] == float('inf'):
            a[i] = float('inf')
        else:
            break
        n = min(a)
    if n != float('inf'):
        ans = min(a[:i]) + a[i] + min(a[i+1:])
    for i in range(1, N - 1):
        if left[i-1] < A[i] > right[i+1]:
            ans = min(ans, left[i-1] + A[i] + right[i+1])
    if isinstance(ans, float):
        print(-1)
    else:
        print(ans)


main()
0