結果

問題 No.1188 レベルX門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-18 22:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-11-23 13:32:13
合計ジャッジ時間 4,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
89,956 KB
testcase_01 AC 190 ms
88,340 KB
testcase_02 AC 181 ms
86,400 KB
testcase_03 AC 203 ms
90,692 KB
testcase_04 AC 189 ms
90,496 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 128 ms
88,960 KB
testcase_07 AC 194 ms
90,092 KB
testcase_08 AC 191 ms
89,984 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 103 ms
76,544 KB
testcase_12 AC 102 ms
76,372 KB
testcase_13 AC 104 ms
76,928 KB
testcase_14 AC 155 ms
84,044 KB
testcase_15 AC 203 ms
90,880 KB
testcase_16 AC 73 ms
72,448 KB
testcase_17 AC 177 ms
87,168 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 172 ms
86,912 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 42 ms
52,480 KB
testcase_23 AC 41 ms
52,096 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