結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー ntudantuda
提出日時 2024-09-17 21:12:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 107,060 KB
最終ジャッジ日時 2024-09-17 21:12:18
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,996 KB
testcase_01 AC 30 ms
53,056 KB
testcase_02 AC 31 ms
52,000 KB
testcase_03 AC 31 ms
53,000 KB
testcase_04 WA -
testcase_05 AC 34 ms
52,404 KB
testcase_06 AC 31 ms
52,632 KB
testcase_07 AC 30 ms
52,508 KB
testcase_08 WA -
testcase_09 AC 31 ms
53,312 KB
testcase_10 WA -
testcase_11 AC 31 ms
52,632 KB
testcase_12 WA -
testcase_13 AC 51 ms
65,232 KB
testcase_14 AC 40 ms
64,988 KB
testcase_15 WA -
testcase_16 AC 40 ms
65,032 KB
testcase_17 WA -
testcase_18 AC 40 ms
64,744 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
64,792 KB
testcase_23 AC 99 ms
106,832 KB
testcase_24 AC 106 ms
106,724 KB
testcase_25 AC 100 ms
106,968 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 102 ms
107,032 KB
testcase_29 AC 97 ms
106,812 KB
testcase_30 AC 102 ms
107,056 KB
testcase_31 AC 115 ms
106,744 KB
testcase_32 AC 109 ms
106,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
L0 = [A[0]]
L1 = [A[-1]]
for i in range(1, N):
    L0.append(min(L0[-1], A[i]))
    L1.append(min(L1[-1], A[-i - 1]))
L1 = L1[::-1]
ans = INF = 10 ** 9
for i in range(1, N - 1):
    if L0[i - 1] < A[i] and L1[i + 1] < A[i]:
        ans = min(ans, L0[i - 1] + A[i] + L1[i + 1])
mini = A.index(min(A))
if 0 < mini < N - 1:
    ans = min(ans, L0[i - 1] + A[i] + L1[i + 1])
if ans == INF:
    print(-1)
else:
    print(ans)
0