結果

問題 No.1188 レベルX門松列
ユーザー titiatitia
提出日時 2020-08-22 15:08:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-10-15 09:25:13
合計ジャッジ時間 8,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
20,656 KB
testcase_01 AC 494 ms
30,360 KB
testcase_02 AC 449 ms
28,388 KB
testcase_03 AC 593 ms
34,384 KB
testcase_04 AC 544 ms
42,240 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 531 ms
18,592 KB
testcase_07 AC 543 ms
36,708 KB
testcase_08 AC 536 ms
36,704 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 68 ms
12,452 KB
testcase_12 AC 69 ms
12,312 KB
testcase_13 AC 72 ms
12,428 KB
testcase_14 AC 362 ms
25,924 KB
testcase_15 AC 632 ms
39,172 KB
testcase_16 AC 37 ms
10,880 KB
testcase_17 AC 480 ms
30,772 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 452 ms
29,832 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

compression_dict={a: ind for ind, a in enumerate(sorted(set(A)))}
A=[compression_dict[a] for a in A]

import bisect

DP=[float("inf")]*N # DP[i]で、長さiのLISの最終要素の最小値.
ANS1=[]

for a in A:
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a

    ANS1.append(pos)

B=A[::-1]
DP=[float("inf")]*N
ANS2=[]

for a in B:
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a

    ANS2.append(pos)

ANS2=ANS2[::-1]
MAX=max(A)
C=[MAX-a for a in A]

DP=[float("inf")]*N
ANS3=[]

for a in C:
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a

    ANS3.append(pos)

D=C[::-1]
DP=[float("inf")]*N
ANS4=[]

for a in D:
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a

    ANS4.append(pos)

ANS4=ANS4[::-1]

ANS=0
for i in range(N):
    ANS=max(ANS,min(ANS1[i],ANS2[i]))
    ANS=max(ANS,min(ANS3[i],ANS4[i]))

print(ANS)




0