結果

問題 No.1188 レベルX門松列
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,676 KB
最終ジャッジ日時 2024-10-15 08:13:29
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
88,704 KB
testcase_01 AC 186 ms
87,168 KB
testcase_02 AC 183 ms
86,016 KB
testcase_03 AC 212 ms
89,088 KB
testcase_04 AC 199 ms
92,512 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 142 ms
88,244 KB
testcase_07 AC 203 ms
91,832 KB
testcase_08 AC 201 ms
92,676 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 96 ms
76,544 KB
testcase_12 AC 97 ms
76,588 KB
testcase_13 AC 99 ms
76,672 KB
testcase_14 AC 163 ms
83,668 KB
testcase_15 AC 214 ms
89,844 KB
testcase_16 AC 68 ms
71,296 KB
testcase_17 AC 181 ms
86,016 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 178 ms
86,244 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ある要素を左端とする最長部分増加列と、右端とするを求める
→それのmin*2+1

"""

from sys import stdin
import sys

import bisect

def LIS(lis,tmp):

    seq = []

    for c in lis:
        ind = bisect.bisect_left(seq,c)
        tmp.append(ind)

        if ind == len(seq):
            seq.append(c)
        else:
            seq[ind] = c

    return len(seq)

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))
ans = 0

LI = []
LIS(A,LI)

print (LI,file=sys.stderr)

A.reverse()
RI = []
LIS(A,RI)
RI.reverse()
A.reverse()

print (RI,file=sys.stderr)

for i in range(N):
    ans = max( ans , min(LI[i] , RI[i]) )

for i in range(N):
    A[i] *= -1

LI = []
LIS(A,LI)

print (LI,file=sys.stderr)

A.reverse()
RI = []
LIS(A,RI)
RI.reverse()
A.reverse()

print (RI,file=sys.stderr)

for i in range(N):
    ans = max( ans , min(LI[i] , RI[i]) )

print (ans)
0