結果

問題 No.1188 レベルX門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-18 22:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-05-02 19:32:58
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
89,984 KB
testcase_01 AC 174 ms
88,400 KB
testcase_02 AC 168 ms
86,656 KB
testcase_03 AC 200 ms
90,436 KB
testcase_04 AC 182 ms
90,364 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 126 ms
89,004 KB
testcase_07 AC 183 ms
90,132 KB
testcase_08 AC 182 ms
90,308 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 99 ms
77,312 KB
testcase_12 AC 97 ms
76,568 KB
testcase_13 AC 98 ms
76,672 KB
testcase_14 AC 151 ms
84,564 KB
testcase_15 AC 194 ms
91,136 KB
testcase_16 AC 71 ms
72,704 KB
testcase_17 AC 171 ms
87,296 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 166 ms
87,168 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 40 ms
52,480 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n = int(input())
A = list(map(int, input().split()))
ans = 0
for _ in range(2):
    left = [-1] * n
    lst = []
    for i, a in enumerate(A):
        p = bisect_left(lst, a)
        left[i] = p
        if len(lst) == p:
            lst.append(a)
        else:
            lst[p] = a
            
    right = [-1] * n
    lst = []
    for i in range(n - 1, -1, -1):
        a = A[i]
        p = bisect_left(lst, a)
        right[i] = p
        if len(lst) == p:
            lst.append(a)
        else:
            lst[p] = a
            
    for l, r in zip(left, right):
        ans = max(ans, min(l, r))
    A = [-a for a in A]
print(ans)
0