結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー H20H20
提出日時 2021-08-04 10:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 110,520 KB
最終ジャッジ日時 2024-09-16 15:00:56
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,896 KB
testcase_01 AC 38 ms
54,084 KB
testcase_02 AC 37 ms
53,940 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 37 ms
52,128 KB
testcase_05 AC 37 ms
52,204 KB
testcase_06 AC 36 ms
52,692 KB
testcase_07 AC 37 ms
53,064 KB
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 36 ms
53,664 KB
testcase_10 AC 36 ms
53,060 KB
testcase_11 AC 38 ms
52,124 KB
testcase_12 AC 37 ms
52,268 KB
testcase_13 AC 48 ms
64,136 KB
testcase_14 AC 48 ms
63,656 KB
testcase_15 AC 46 ms
63,376 KB
testcase_16 AC 47 ms
64,696 KB
testcase_17 AC 48 ms
65,188 KB
testcase_18 AC 48 ms
63,992 KB
testcase_19 AC 47 ms
64,260 KB
testcase_20 AC 47 ms
63,984 KB
testcase_21 AC 47 ms
63,312 KB
testcase_22 AC 47 ms
64,120 KB
testcase_23 AC 95 ms
110,448 KB
testcase_24 AC 95 ms
110,364 KB
testcase_25 AC 95 ms
110,520 KB
testcase_26 AC 95 ms
110,240 KB
testcase_27 AC 94 ms
110,448 KB
testcase_28 AC 85 ms
107,532 KB
testcase_29 AC 86 ms
107,292 KB
testcase_30 AC 99 ms
107,444 KB
testcase_31 AC 99 ms
107,556 KB
testcase_32 AC 99 ms
107,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
for i in range(N-1):
    if A[i]<A[i+1]:
        break
else:
    print(-1)
    exit()
for i in range(N-1):
    if A[i]>A[i+1]:
        break
else:
    print(-1)
    exit()
LMIN = [A[0]]*N
RMIN = [A[-1]]*N
for i in range(1,N):
    LMIN[i] = min(LMIN[i-1],A[i])
for i in reversed(range(N-1)):
    RMIN[i] = min(A[i],RMIN[i+1])
ans = 10**10
for i in range(1,N-1):
    if LMIN[i-1]<A[i]>RMIN[i+1] or LMIN[i-1]>A[i]<RMIN[i+1]: 
        ans = min(ans,LMIN[i-1]+A[i]+RMIN[i+1])
print(ans)
0