結果

問題 No.1188 レベルX門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-17 23:44:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,516 KB
最終ジャッジ日時 2024-06-11 02:02:03
合計ジャッジ時間 5,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 186 ms
92,708 KB
testcase_05 AC 38 ms
52,788 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,312 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 93 ms
76,672 KB
testcase_14 WA -
testcase_15 AC 199 ms
90,980 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

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


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

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