結果

問題 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  
実行時間 433 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,020 KB
最終ジャッジ日時 2024-11-21 02:58:48
合計ジャッジ時間 6,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
20,480 KB
testcase_01 AC 354 ms
25,236 KB
testcase_02 AC 320 ms
23,460 KB
testcase_03 AC 428 ms
29,008 KB
testcase_04 AC 421 ms
31,924 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 361 ms
16,188 KB
testcase_07 AC 425 ms
31,904 KB
testcase_08 AC 426 ms
32,020 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 56 ms
11,776 KB
testcase_12 AC 60 ms
12,032 KB
testcase_13 AC 60 ms
12,032 KB
testcase_14 AC 262 ms
20,260 KB
testcase_15 AC 433 ms
28,904 KB
testcase_16 AC 34 ms
10,880 KB
testcase_17 AC 340 ms
24,216 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 317 ms
23,180 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 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