結果

問題 No.992 最長増加部分列の数え上げ
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-02-14 23:31:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 175,808 KB
最終ジャッジ日時 2024-10-06 13:27:02
合計ジャッジ時間 13,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 203 ms
115,072 KB
testcase_05 AC 163 ms
105,856 KB
testcase_06 AC 233 ms
125,696 KB
testcase_07 AC 184 ms
110,208 KB
testcase_08 AC 124 ms
91,932 KB
testcase_09 AC 189 ms
110,848 KB
testcase_10 AC 220 ms
125,948 KB
testcase_11 AC 271 ms
130,816 KB
testcase_12 AC 105 ms
85,360 KB
testcase_13 AC 176 ms
110,336 KB
testcase_14 AC 175 ms
109,696 KB
testcase_15 AC 108 ms
86,016 KB
testcase_16 AC 409 ms
146,420 KB
testcase_17 AC 122 ms
91,648 KB
testcase_18 AC 171 ms
109,568 KB
testcase_19 AC 261 ms
130,688 KB
testcase_20 AC 401 ms
174,820 KB
testcase_21 AC 413 ms
174,824 KB
testcase_22 AC 423 ms
175,064 KB
testcase_23 AC 399 ms
174,752 KB
testcase_24 AC 412 ms
174,556 KB
testcase_25 AC 422 ms
175,808 KB
testcase_26 AC 430 ms
175,036 KB
testcase_27 AC 440 ms
174,812 KB
testcase_28 AC 434 ms
174,676 KB
testcase_29 AC 444 ms
174,808 KB
testcase_30 AC 267 ms
167,584 KB
testcase_31 AC 272 ms
167,364 KB
testcase_32 AC 281 ms
167,656 KB
testcase_33 AC 271 ms
167,004 KB
testcase_34 AC 264 ms
166,876 KB
testcase_35 AC 281 ms
165,692 KB
testcase_36 AC 264 ms
165,828 KB
testcase_37 AC 270 ms
165,820 KB
testcase_38 AC 254 ms
165,816 KB
testcase_39 AC 258 ms
166,208 KB
testcase_40 AC 259 ms
145,512 KB
testcase_41 AC 275 ms
145,512 KB
testcase_42 AC 271 ms
145,644 KB
testcase_43 AC 265 ms
145,828 KB
testcase_44 AC 266 ms
145,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [(0, 0) for _ in range(n+1)]
        self.tree[0] = (0, 1)
  
    def sum(self, i):
        s = (0, 1)
        while i > 0:
            if s[0] == self.tree[i][0]:
                s = (s[0], (self.tree[i][1] + s[1])%mod)
            elif s[0] < self.tree[i][0]:
                s = self.tree[i]
            i -= i & -i
        return s
  
    def add(self, i, x):
        while i <= self.size:
            if x[0] == self.tree[i][0]:
                self.tree[i] = (x[0], (self.tree[i][1] + x[1])%mod)
            elif x[0] > self.tree[i][0]:
                self.tree[i] = (x[0], x[1])
            i += i & -i

N, = map(int, input().split())
bs = list(map(int, input().split()))
ids = sorted(list(set(bs)))
x2i = dict()
for i, x in enumerate(ids):
    i += 1
    x2i[x] = i
As = [x2i[b] for b in bs]
 
#print(As)
bit = Bit(N)
for a in As:
    a0, co = bit.sum(a-1)
#    print(a, a0, co)
    bit.add(a, (a0+1, co))
print(bit.sum(N)[1]%mod)

0