結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー timitimi
提出日時 2020-10-05 13:22:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 697 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-07-19 20:25:47
合計ジャッジ時間 7,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,368 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 43 ms
53,120 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 45 ms
52,992 KB
testcase_06 AC 41 ms
53,248 KB
testcase_07 AC 43 ms
53,248 KB
testcase_08 AC 42 ms
52,992 KB
testcase_09 AC 42 ms
52,992 KB
testcase_10 AC 41 ms
52,864 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 41 ms
52,864 KB
testcase_13 AC 151 ms
77,420 KB
testcase_14 AC 151 ms
77,420 KB
testcase_15 AC 150 ms
77,440 KB
testcase_16 AC 152 ms
77,808 KB
testcase_17 AC 155 ms
77,692 KB
testcase_18 AC 156 ms
77,576 KB
testcase_19 AC 155 ms
77,476 KB
testcase_20 AC 163 ms
77,548 KB
testcase_21 AC 158 ms
77,996 KB
testcase_22 AC 150 ms
77,644 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
LMI=[0 for i in range(N)]
RMI=[0 for i in range(N)]
mi,ma=10**9,0
for i in range(N):
    mi=min(A[i],mi)
    LMI[i]=mi
    
mi,ma=10**9,0
for i in range(N):
    mi=min(A[-1-i],mi)
    RMI[-1-i]=mi
ans=10**9
for i in range(1,N-1):
    if LMI[i-1]<A[i] and A[i]>RMI[i+1]:
        d=LMI[i-1]+A[i]+RMI[i+1]
        ans=min(d,ans)
import bisect
import heapq
L=[]
R=sorted(A)
R.remove(A[0])
for i in range(1,N-1):
    heapq.heappush(L,A[i-1]) 
    R.remove(A[i])
    a=bisect.bisect_right(L,A[i])
    b=bisect.bisect_right(R,A[i])
    if a!=i and b!=N-i-1:
        d=L[a]+A[i]+R[b]
        ans=min(d,ans)
if ans==10**9:
    print(-1)
else:
    print(ans)
0