結果

問題 No.1188 レベルX門松列
ユーザー takakintakakin
提出日時 2020-08-22 23:59:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,820 KB
最終ジャッジ日時 2024-10-15 12:28:01
合計ジャッジ時間 7,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 409 ms
18,452 KB
testcase_01 AC 430 ms
21,140 KB
testcase_02 AC 395 ms
19,900 KB
testcase_03 AC 524 ms
24,164 KB
testcase_04 AC 481 ms
29,820 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 456 ms
29,332 KB
testcase_08 AC 439 ms
29,456 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 65 ms
11,776 KB
testcase_12 AC 69 ms
11,776 KB
testcase_13 AC 71 ms
11,904 KB
testcase_14 AC 312 ms
17,368 KB
testcase_15 AC 525 ms
23,992 KB
testcase_16 AC 36 ms
10,752 KB
testcase_17 AC 406 ms
20,368 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 384 ms
19,700 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 WA -
testcase_22 AC 31 ms
10,752 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
import bisect
n=int(input())
A=[int(i) for i in input().split()]
LI,LD=[0]*n,[0]*n
I,D=[A[0]],[-A[0]]
il,dl=1,1
for i in range(1,n):
	a=A[i]
	if I[-1]<a:
		LI[i]=il
		il+=1
		I.append(a)
	else:
		ind_i=bisect.bisect_left(I,a)
		LI[i]=ind_i
		I[ind_i]=a
	if D[-1]<-a:
		LD[i]=dl
		dl+=1
		D.append(-a)
	else:
		ind_d=bisect.bisect_left(D,-a)
		LD[i]=ind_d
		D[ind_d]=-a

RI,RD=[0]*n,[0]*n
I,D=[A[-1]],[-A[-1]]
ir,dr=1,1
for i in range(1,n):
	a=A[n-1-i]
	if I[-1]<a:
		RI[i]=ir
		ir+=1
		I.append(a)
	else:
		ind_i=bisect.bisect_left(I,a)
		RI[i]=ind_i
		I[ind_i]=a
	if D[-1]<-a:
		RD[i]=dr
		dr+=1
		D.append(-a)
	else:
		ind_d=bisect.bisect_left(D,-a)
		RD[i]=ind_d
		D[ind_d]=-a

ans=1
for i in range(n):
	ans=max(ans,min(LI[i],RI[n-1-i]),min(LD[i],RD[n-1-i]))
print(ans)
0