結果

問題 No.992 最長増加部分列の数え上げ
ユーザー %20%20
提出日時 2020-02-06 01:01:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,072 KB
最終ジャッジ日時 2024-09-25 06:59:15
合計ジャッジ時間 16,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 211 ms
22,700 KB
testcase_05 AC 160 ms
19,588 KB
testcase_06 AC 250 ms
25,564 KB
testcase_07 AC 189 ms
21,336 KB
testcase_08 AC 109 ms
16,344 KB
testcase_09 AC 193 ms
21,744 KB
testcase_10 AC 246 ms
25,560 KB
testcase_11 AC 325 ms
29,116 KB
testcase_12 AC 83 ms
14,596 KB
testcase_13 AC 190 ms
21,008 KB
testcase_14 AC 177 ms
21,072 KB
testcase_15 AC 83 ms
14,628 KB
testcase_16 AC 459 ms
38,556 KB
testcase_17 AC 110 ms
16,472 KB
testcase_18 AC 180 ms
21,056 KB
testcase_19 AC 319 ms
28,932 KB
testcase_20 AC 533 ms
41,480 KB
testcase_21 AC 542 ms
41,388 KB
testcase_22 AC 558 ms
41,136 KB
testcase_23 AC 543 ms
41,256 KB
testcase_24 AC 536 ms
41,384 KB
testcase_25 AC 536 ms
41,388 KB
testcase_26 AC 526 ms
41,388 KB
testcase_27 AC 528 ms
41,256 KB
testcase_28 AC 511 ms
41,260 KB
testcase_29 AC 532 ms
41,268 KB
testcase_30 AC 424 ms
41,540 KB
testcase_31 AC 420 ms
42,048 KB
testcase_32 AC 409 ms
42,048 KB
testcase_33 AC 425 ms
43,072 KB
testcase_34 AC 417 ms
42,304 KB
testcase_35 AC 411 ms
41,924 KB
testcase_36 AC 423 ms
41,920 KB
testcase_37 AC 416 ms
42,048 KB
testcase_38 AC 413 ms
41,924 KB
testcase_39 AC 402 ms
41,924 KB
testcase_40 AC 427 ms
41,136 KB
testcase_41 AC 437 ms
42,208 KB
testcase_42 AC 432 ms
40,500 KB
testcase_43 AC 426 ms
41,692 KB
testcase_44 AC 424 ms
41,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

inf=2*10**9
MD=10**9+7

N=int(input())
A=map(int,input().split())
dp1=[-inf]
dp2=[[-inf,inf]]
dp4=[[0,1]]
for a in A:
	x=bisect.bisect_left(dp1,a)
	if x==len(dp1):
		dp1+=[a]
		dp2+=[[-inf]]
		dp4+=[[0]]
	else:
		dp1[x]=a
	dp2[x]+=[-a]
	y=bisect.bisect_right(dp2[x-1],-a)-1;
	dp4[x]+=[(dp4[x][-1]+dp4[x-1][-1]-dp4[x-1][y])%MD]
print(dp4[-1][-1])
0