結果

問題 No.1188 レベルX門松列
ユーザー yansi819yansi819
提出日時 2024-05-06 18:01:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 91,984 KB
最終ジャッジ日時 2024-05-06 18:01:10
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
89,976 KB
testcase_01 AC 171 ms
87,936 KB
testcase_02 AC 168 ms
86,164 KB
testcase_03 AC 207 ms
89,708 KB
testcase_04 AC 173 ms
91,100 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 125 ms
88,704 KB
testcase_07 AC 173 ms
91,528 KB
testcase_08 AC 170 ms
91,984 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 92 ms
76,416 KB
testcase_12 AC 96 ms
76,928 KB
testcase_13 AC 93 ms
76,800 KB
testcase_14 AC 154 ms
83,584 KB
testcase_15 AC 202 ms
90,368 KB
testcase_16 AC 67 ms
71,168 KB
testcase_17 AC 171 ms
86,528 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 162 ms
86,656 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 36 ms
51,968 KB
testcase_23 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def LIS(A):
    data = []
    L = []
    for i in range(N):
        ind = bisect_left(data, A[i])
        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 = [-a for a in 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