結果

問題 No.992 最長増加部分列の数え上げ
ユーザー qqqqqqqqqq
提出日時 2020-02-14 22:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 128,372 KB
最終ジャッジ日時 2024-10-06 13:04:19
合計ジャッジ時間 11,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,072 KB
testcase_01 AC 39 ms
52,652 KB
testcase_02 AC 38 ms
52,660 KB
testcase_03 AC 39 ms
52,328 KB
testcase_04 AC 154 ms
96,116 KB
testcase_05 AC 128 ms
91,480 KB
testcase_06 AC 176 ms
98,372 KB
testcase_07 AC 145 ms
95,012 KB
testcase_08 AC 109 ms
86,220 KB
testcase_09 AC 149 ms
94,884 KB
testcase_10 AC 169 ms
98,552 KB
testcase_11 AC 205 ms
101,356 KB
testcase_12 AC 97 ms
81,980 KB
testcase_13 AC 143 ms
94,236 KB
testcase_14 AC 142 ms
94,420 KB
testcase_15 AC 97 ms
82,292 KB
testcase_16 AC 277 ms
114,648 KB
testcase_17 AC 108 ms
86,012 KB
testcase_18 AC 140 ms
93,828 KB
testcase_19 AC 211 ms
101,760 KB
testcase_20 AC 304 ms
127,724 KB
testcase_21 AC 307 ms
127,416 KB
testcase_22 AC 305 ms
127,620 KB
testcase_23 AC 308 ms
128,184 KB
testcase_24 AC 306 ms
127,932 KB
testcase_25 AC 308 ms
127,700 KB
testcase_26 AC 359 ms
128,372 KB
testcase_27 AC 316 ms
127,616 KB
testcase_28 AC 310 ms
127,956 KB
testcase_29 AC 306 ms
127,664 KB
testcase_30 AC 231 ms
127,628 KB
testcase_31 AC 232 ms
127,364 KB
testcase_32 AC 234 ms
127,612 KB
testcase_33 AC 248 ms
128,268 KB
testcase_34 AC 233 ms
127,468 KB
testcase_35 AC 234 ms
126,472 KB
testcase_36 AC 238 ms
126,448 KB
testcase_37 AC 233 ms
126,448 KB
testcase_38 AC 233 ms
126,572 KB
testcase_39 AC 234 ms
126,316 KB
testcase_40 AC 255 ms
122,988 KB
testcase_41 AC 265 ms
123,532 KB
testcase_42 AC 245 ms
122,876 KB
testcase_43 AC 269 ms
123,784 KB
testcase_44 AC 267 ms
123,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説を読みました
# https://stackoverflow.com/questions/22923646/number-of-all-longest-increasing-subsequences

from bisect import bisect_left

mod = 10**9+7

n = int(input())
a = list(map(int, input().split()))

row = [float("inf")]*n
cumsum = [[0] for i in range(n)]
nums = [[] for i in range(n)]
for ai in a:
    i = bisect_left(row, ai)
    add = (row[i] == ai)
    row[i] = ai
    if i == 0:
        count = 1
    else:
        j = bisect_left(nums[i-1], -ai+1)
        count = cumsum[i-1][-1] - cumsum[i-1][j]
    if add:
        cumsum[i][-1] += count
    else:
        cumsum[i].append(cumsum[i][-1]+count)
        nums[i].append(-ai)
    cumsum[i][-1] %= mod

i = bisect_left(row, float("inf"))
ans = cumsum[i-1][-1]%mod
print(ans)
0