結果

問題 No.992 最長増加部分列の数え上げ
ユーザー chinchillachinchilla
提出日時 2020-02-15 21:34:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 712 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 52,936 KB
最終ジャッジ日時 2024-10-06 14:06:17
合計ジャッジ時間 20,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 248 ms
26,776 KB
testcase_05 AC 182 ms
22,660 KB
testcase_06 AC 319 ms
30,320 KB
testcase_07 AC 227 ms
25,048 KB
testcase_08 AC 128 ms
18,264 KB
testcase_09 AC 234 ms
25,432 KB
testcase_10 AC 318 ms
30,316 KB
testcase_11 AC 408 ms
35,248 KB
testcase_12 AC 93 ms
15,752 KB
testcase_13 AC 218 ms
24,492 KB
testcase_14 AC 216 ms
24,528 KB
testcase_15 AC 96 ms
15,780 KB
testcase_16 AC 631 ms
47,880 KB
testcase_17 AC 126 ms
18,272 KB
testcase_18 AC 215 ms
24,232 KB
testcase_19 AC 392 ms
35,012 KB
testcase_20 AC 710 ms
51,764 KB
testcase_21 AC 683 ms
51,768 KB
testcase_22 AC 703 ms
51,772 KB
testcase_23 AC 712 ms
51,764 KB
testcase_24 AC 712 ms
51,888 KB
testcase_25 AC 687 ms
51,768 KB
testcase_26 AC 690 ms
51,768 KB
testcase_27 AC 705 ms
51,892 KB
testcase_28 AC 699 ms
51,768 KB
testcase_29 AC 712 ms
51,768 KB
testcase_30 AC 454 ms
51,660 KB
testcase_31 AC 464 ms
52,804 KB
testcase_32 AC 456 ms
52,420 KB
testcase_33 AC 466 ms
52,936 KB
testcase_34 AC 460 ms
52,420 KB
testcase_35 AC 435 ms
51,396 KB
testcase_36 AC 427 ms
51,400 KB
testcase_37 AC 440 ms
51,400 KB
testcase_38 AC 451 ms
51,268 KB
testcase_39 AC 446 ms
51,268 KB
testcase_40 AC 499 ms
51,864 KB
testcase_41 AC 507 ms
51,256 KB
testcase_42 AC 515 ms
50,840 KB
testcase_43 AC 503 ms
50,480 KB
testcase_44 AC 489 ms
50,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect, bisect_left
m = 10**9+7
n = int(input())
a = map(int, input().split())
s, t, c = [], [], []
for v in a:
	l = bisect_left(t, v)
	if l == len(t): s.append([]); t.append(v); c.append(0)
	o = c[l-1] + s[l-1][bisect(s[l-1], (-v, 0))][1] if l else 1
	s[l].append((-v, -c[l]))
	t[l] = v
	c[l] += o
	c[l] %= m
print(c[-1])
0