結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー uni_pythonuni_python
提出日時 2020-06-26 21:32:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,204 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-07-04 19:47:57
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 41 ms
52,480 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,224 KB
testcase_12 WA -
testcase_13 AC 58 ms
64,000 KB
testcase_14 AC 57 ms
64,256 KB
testcase_15 WA -
testcase_16 AC 55 ms
64,256 KB
testcase_17 WA -
testcase_18 AC 54 ms
64,512 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 60 ms
64,384 KB
testcase_23 AC 114 ms
108,544 KB
testcase_24 AC 108 ms
108,544 KB
testcase_25 AC 103 ms
108,544 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 100 ms
108,544 KB
testcase_29 AC 102 ms
108,160 KB
testcase_30 AC 111 ms
108,544 KB
testcase_31 AC 120 ms
108,288 KB
testcase_32 AC 121 ms
108,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    A=LI()
    inf=10**9
    ml=[inf]*N
    mr=[inf]*N
    
    m=inf
    for i in range(N):
        ml[i]=m
        if A[i]<m:
            m=A[i]
        
    m=inf
    for i in range(N-1,-1,-1):
        mr[i]=m
        if A[i]<m:
            m=A[i]
        
    ans=inf
    for i in range(N):
        if ml[i]<A[i] and mr[i]<A[i]:
            temp=ml[i]+mr[i]+A[i]
            ans=min(ans,temp)
            
    ###################
    
    for i in range(N):
        A[i]*=-1        
    inf=-1*(10**9)
    ml=[inf]*N
    mr=[inf]*N
    
    m=inf
    for i in range(N):
        ml[i]=m
        if A[i]>m:
            m=A[i]
        
    m=inf
    for i in range(N-1,-1,-1):
        mr[i]=m
        if A[i]>m:
            m=A[i]
        
    ans2=inf
    for i in range(N):
        if ml[i]>A[i] and mr[i]>A[i]:
            temp=ml[i]+mr[i]+A[i]
            ans2=max(ans2,temp)
            
    ans2*=-1
    ans=min(ans,ans2)
    inf=10**9
    
    if ans>=inf:
        ans=-1
    print(ans)
    


main()
0