結果

問題 No.1188 レベルX門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-17 23:58:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 98,416 KB
最終ジャッジ日時 2024-06-11 02:14:07
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 162 ms
93,616 KB
testcase_05 AC 35 ms
53,692 KB
testcase_06 WA -
testcase_07 AC 159 ms
92,124 KB
testcase_08 AC 155 ms
91,648 KB
testcase_09 AC 38 ms
53,280 KB
testcase_10 AC 36 ms
52,620 KB
testcase_11 AC 85 ms
76,824 KB
testcase_12 WA -
testcase_13 AC 88 ms
76,948 KB
testcase_14 AC 145 ms
83,736 KB
testcase_15 AC 188 ms
90,908 KB
testcase_16 AC 60 ms
71,676 KB
testcase_17 AC 164 ms
86,940 KB
testcase_18 AC 34 ms
53,140 KB
testcase_19 AC 155 ms
86,632 KB
testcase_20 AC 34 ms
53,208 KB
testcase_21 AC 34 ms
53,688 KB
testcase_22 AC 34 ms
53,260 KB
testcase_23 AC 35 ms
52,992 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_right(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