結果

問題 No.1188 レベルX門松列
ユーザー roarisroaris
提出日時 2020-08-22 15:19:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-10-15 09:34:46
合計ジャッジ時間 5,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
90,496 KB
testcase_01 AC 273 ms
89,088 KB
testcase_02 AC 215 ms
86,784 KB
testcase_03 AC 262 ms
91,264 KB
testcase_04 AC 282 ms
90,496 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 210 ms
89,856 KB
testcase_07 AC 272 ms
90,592 KB
testcase_08 AC 273 ms
90,240 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 47 ms
59,008 KB
testcase_11 AC 99 ms
77,140 KB
testcase_12 AC 95 ms
77,312 KB
testcase_13 AC 103 ms
76,672 KB
testcase_14 AC 186 ms
84,224 KB
testcase_15 AC 316 ms
90,928 KB
testcase_16 AC 78 ms
76,672 KB
testcase_17 AC 273 ms
87,296 KB
testcase_18 AC 49 ms
59,904 KB
testcase_19 AC 212 ms
87,680 KB
testcase_20 AC 44 ms
53,376 KB
testcase_21 AC 43 ms
54,016 KB
testcase_22 AC 43 ms
53,504 KB
testcase_23 AC 44 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from bisect import *

def lis(l):
    dp = [10**18]*(len(l)+1)
    dp[0] = -10**18
    res = [-1]*N
    
    for i in range(len(l)):
        j = bisect_left(dp, l[i])
        dp[j] = l[i]
        res[i] = bisect_left(dp, 10**18)-1
    
    return res

N = int(input())
A = list(map(int, input().split()))
ans = 0
res1 = lis(A)
A.reverse()
res2 = lis(A)
res2.reverse()
A.reverse()

for i in range(N):
    ans = max(ans, min(res1[i], res2[i])-1)

A = list(map(lambda x: -x, A))
res1 = lis(A)
A.reverse()
res2 = lis(A)
res2.reverse()
A.reverse()

for i in range(N):
    ans = max(ans, min(res1[i], res2[i])-1)

print(ans)
0