結果

問題 No.1188 レベルX門松列
ユーザー 37zigen37zigen
提出日時 2020-08-25 09:58:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,072 KB
最終ジャッジ日時 2024-11-06 11:06:23
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
18,368 KB
testcase_01 AC 302 ms
19,192 KB
testcase_02 AC 274 ms
18,936 KB
testcase_03 AC 367 ms
21,676 KB
testcase_04 AC 352 ms
22,668 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 313 ms
14,676 KB
testcase_07 AC 351 ms
24,004 KB
testcase_08 AC 352 ms
24,072 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 55 ms
11,776 KB
testcase_12 AC 58 ms
11,776 KB
testcase_13 AC 58 ms
11,904 KB
testcase_14 AC 221 ms
17,264 KB
testcase_15 AC 360 ms
21,612 KB
testcase_16 AC 34 ms
10,880 KB
testcase_17 AC 288 ms
19,224 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 267 ms
18,872 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=int(input())
A=list(map(int,input().split()))
def f(n,a):
    ret=0
    def g(n,a):
        dp=[10**20]*n
        A=[0]*n
        for i,a in enumerate(a):
            to=bisect.bisect_left(dp,a)
            dp[to]=a
            A[i]=to
        return A
    L=g(n,a)
    R=g(n,a[::-1])[::-1]
    for i in range(n):
        ret=max(ret,min(L[i],R[i]))
    return ret

ans=f(N,A)
for i in range(N):
    A[i]*=-1
ans=max(ans,f(N,A))
print(ans)
0