結果

問題 No.992 最長増加部分列の数え上げ
ユーザー %20%20
提出日時 2020-02-06 01:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,060 KB
最終ジャッジ日時 2024-09-25 06:58:31
合計ジャッジ時間 9,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 131 ms
85,632 KB
testcase_05 AC 115 ms
83,712 KB
testcase_06 AC 149 ms
88,712 KB
testcase_07 AC 127 ms
84,352 KB
testcase_08 AC 103 ms
80,244 KB
testcase_09 AC 128 ms
84,736 KB
testcase_10 AC 147 ms
89,088 KB
testcase_11 AC 173 ms
91,776 KB
testcase_12 AC 95 ms
78,800 KB
testcase_13 AC 128 ms
84,432 KB
testcase_14 AC 120 ms
83,968 KB
testcase_15 AC 97 ms
78,668 KB
testcase_16 AC 237 ms
99,072 KB
testcase_17 AC 107 ms
80,588 KB
testcase_18 AC 125 ms
84,224 KB
testcase_19 AC 168 ms
91,776 KB
testcase_20 AC 233 ms
100,180 KB
testcase_21 AC 246 ms
101,076 KB
testcase_22 AC 244 ms
100,712 KB
testcase_23 AC 246 ms
100,096 KB
testcase_24 AC 245 ms
101,308 KB
testcase_25 AC 245 ms
100,848 KB
testcase_26 AC 247 ms
100,680 KB
testcase_27 AC 236 ms
100,472 KB
testcase_28 AC 235 ms
100,952 KB
testcase_29 AC 239 ms
101,120 KB
testcase_30 AC 176 ms
106,876 KB
testcase_31 AC 187 ms
107,972 KB
testcase_32 AC 176 ms
106,848 KB
testcase_33 AC 178 ms
107,060 KB
testcase_34 AC 192 ms
105,972 KB
testcase_35 AC 175 ms
100,620 KB
testcase_36 AC 179 ms
100,396 KB
testcase_37 AC 177 ms
100,480 KB
testcase_38 AC 176 ms
100,540 KB
testcase_39 AC 176 ms
100,272 KB
testcase_40 AC 180 ms
106,420 KB
testcase_41 AC 198 ms
106,200 KB
testcase_42 AC 179 ms
106,436 KB
testcase_43 AC 200 ms
108,060 KB
testcase_44 AC 188 ms
106,076 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