結果

問題 No.1188 レベルX門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-17 23:59:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 92,700 KB
最終ジャッジ日時 2024-06-11 02:14:37
合計ジャッジ時間 4,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 176 ms
87,808 KB
testcase_02 AC 166 ms
86,124 KB
testcase_03 AC 191 ms
90,036 KB
testcase_04 AC 175 ms
92,700 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 120 ms
88,612 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 88 ms
76,376 KB
testcase_12 AC 87 ms
76,748 KB
testcase_13 AC 89 ms
76,916 KB
testcase_14 AC 147 ms
84,224 KB
testcase_15 AC 190 ms
90,584 KB
testcase_16 AC 67 ms
71,680 KB
testcase_17 AC 166 ms
86,732 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 160 ms
86,676 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 35 ms
52,864 KB
testcase_22 AC 36 ms
52,480 KB
testcase_23 AC 36 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])
            flag = 1
        else:
            data[ind] = A[i]
        if flag:
            L.append(len(data))
        else:
            L.append(0)
    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])-1)
    ans = max(ans, min(LD[i], RD[i])-1)
print(ans)
0