結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー timitimi
提出日時 2020-10-02 16:43:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 646 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-07-08 11:40:17
合計ジャッジ時間 4,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,384 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
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

for i in range(1,N-1):
    L=sorted(A[:i])
    R=sorted(A[i+1:])
    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