結果

問題 No.1188 レベルX門松列
ユーザー lemondolemondo
提出日時 2020-08-22 15:18:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 92,004 KB
最終ジャッジ日時 2024-10-15 09:34:12
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 162 ms
89,064 KB
testcase_02 AC 158 ms
88,140 KB
testcase_03 AC 179 ms
91,320 KB
testcase_04 AC 171 ms
91,132 KB
testcase_05 AC 40 ms
53,136 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
52,652 KB
testcase_10 AC 40 ms
52,520 KB
testcase_11 AC 93 ms
76,728 KB
testcase_12 AC 89 ms
76,176 KB
testcase_13 AC 88 ms
76,312 KB
testcase_14 AC 142 ms
85,440 KB
testcase_15 AC 184 ms
92,004 KB
testcase_16 AC 67 ms
72,316 KB
testcase_17 AC 157 ms
88,080 KB
testcase_18 AC 39 ms
52,324 KB
testcase_19 AC 157 ms
88,100 KB
testcase_20 AC 39 ms
52,816 KB
testcase_21 AC 39 ms
53,136 KB
testcase_22 AC 38 ms
52,808 KB
testcase_23 AC 38 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

N = int(input())
As = list(mapint())
from bisect import bisect_left

def LIS(in_lis):
    lis = []
    ret_lis = [0]*len(in_lis)
    for i in range(N):
        a = in_lis[i]
        idx = bisect_left(lis, a)
        if idx>=len(lis):
            lis.append(a)
            ret_lis[i] = len(lis)
        else:
            lis[idx] = a
    return ret_lis

ascending = LIS(As)
decending = LIS([-a for a in As])
r_ascending = LIS(As[::-1])[::-1]
r_decending = LIS([-a for a in As[::-1]])[::-1]
ans = 0
for n, r in zip(ascending, r_ascending):
    ans = max(ans, min(n, r))
for n, r in zip(decending, r_decending):
    ans = max(ans, min(n, r))
print(ans-1)
0