結果

問題 No.1188 レベルX門松列
ユーザー marroncastlemarroncastle
提出日時 2020-08-22 19:49:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 569 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 91,184 KB
最終ジャッジ日時 2024-10-15 12:16:32
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 166 ms
88,680 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 181 ms
90,484 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 162 ms
89,856 KB
testcase_08 AC 161 ms
90,112 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 81 ms
76,268 KB
testcase_13 AC 82 ms
76,544 KB
testcase_14 WA -
testcase_15 AC 182 ms
90,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 AC 38 ms
52,068 KB
testcase_23 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N = int(input())
A = list(map(int, input().split()))
def LIS(A,N):
    lis = []
    ans = [0]*N
    for i in range(N):
        ans[i] = len(lis)
        ind = bisect_left(lis,A[i])
        if ind == len(lis):
            lis.append(A[i])
        else:
            lis[ind] = A[i]
    return ans
def kadomatsu(A,N):
    lis1 = LIS(A,N)
    lis2 = LIS(A[::-1],N)[::-1]
    ans = 0
    for i in range(N):
        ans = max(ans, min(lis1[i],lis2[i]))
    return ans
a = kadomatsu(A,N)
b = kadomatsu(list(map(lambda x:-x,A)),N)
print(max(a,b))
0