結果

問題 No.1188 レベルX門松列
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-02 01:02:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,924 KB
最終ジャッジ日時 2024-05-01 02:52:31
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 379 ms
20,512 KB
testcase_01 AC 350 ms
25,348 KB
testcase_02 AC 311 ms
23,460 KB
testcase_03 AC 430 ms
29,024 KB
testcase_04 AC 420 ms
31,924 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 367 ms
16,184 KB
testcase_07 AC 415 ms
31,872 KB
testcase_08 AC 412 ms
31,896 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 57 ms
11,904 KB
testcase_12 AC 60 ms
11,904 KB
testcase_13 AC 58 ms
12,032 KB
testcase_14 AC 256 ms
20,224 KB
testcase_15 AC 419 ms
28,900 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 334 ms
24,132 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 317 ms
23,220 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


def LIS(lists):
    N = len(lists)
    inf = 10**15
    dp = [inf for i in range(N+1)]
    length = [0 for i in range(N)]
    for i in range(N):
        index = bisect.bisect_left(dp, lists[i])
        dp[index] = lists[i]
        length[i] = index + 1
    return length


def LDS(lists):
    L = [-x for x in lists]
    return LIS(L)


N = int(input())
A = list(map(int, input().split()))

left_upper = LIS(A)
left_downer = LDS(A)

A.reverse()

right_upper = LIS(A)
right_downer = LDS(A)

ans = 0

for i in range(N):
    ans = max(ans, min(left_upper[i], right_upper[N-1-i]),
              min(left_downer[i], right_downer[N-1-i]))

print(ans - 1)
0