結果

問題 No.1188 レベルX門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-18 00:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 92,128 KB
最終ジャッジ日時 2024-06-11 03:39:56
合計ジャッジ時間 3,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
89,300 KB
testcase_01 AC 163 ms
87,852 KB
testcase_02 AC 159 ms
86,004 KB
testcase_03 AC 182 ms
89,524 KB
testcase_04 AC 164 ms
92,128 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 114 ms
88,360 KB
testcase_07 AC 165 ms
91,788 KB
testcase_08 AC 169 ms
91,972 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 36 ms
52,732 KB
testcase_11 AC 88 ms
76,524 KB
testcase_12 AC 87 ms
77,048 KB
testcase_13 AC 89 ms
77,056 KB
testcase_14 AC 140 ms
83,712 KB
testcase_15 AC 183 ms
90,752 KB
testcase_16 AC 63 ms
71,424 KB
testcase_17 AC 165 ms
86,732 KB
testcase_18 AC 36 ms
52,480 KB
testcase_19 AC 158 ms
86,608 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def LIS(A):
    # weakly increase --> bisect_right
    # strictly increase --> bisect_left
    data = []
    L = []
    for i in range(N):
        ind = bisect_left(data, A[i])
        flag = 0
        if len(data) == ind:
            data.append(A[i])
        else:
            data[ind] = A[i]
        L.append(ind)
    return L


N = int(input())
A = list(map(int, input().split()))
LU = LIS(A)
A.reverse()
RU = LIS(A)
RU.reverse()
A = list(map(lambda x : -x, A))
RD = LIS(A)
RD.reverse()
A.reverse()
LD = LIS(A)

ans = 0
for i in range(N):
    ans = max(ans, min(LU[i], RU[i]))
    ans = max(ans, min(LD[i], RD[i]))
print(ans)
0