結果

問題 No.992 最長増加部分列の数え上げ
ユーザー qqqqqqqqqq
提出日時 2020-02-18 21:11:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,235 ms / 2,000 ms
コード長 1,632 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 139,720 KB
最終ジャッジ日時 2024-10-06 15:46:24
合計ジャッジ時間 29,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,288 KB
testcase_01 AC 39 ms
52,076 KB
testcase_02 AC 40 ms
53,348 KB
testcase_03 AC 38 ms
52,880 KB
testcase_04 AC 447 ms
99,788 KB
testcase_05 AC 338 ms
95,892 KB
testcase_06 AC 544 ms
100,664 KB
testcase_07 AC 405 ms
98,012 KB
testcase_08 AC 248 ms
88,280 KB
testcase_09 AC 416 ms
97,964 KB
testcase_10 AC 543 ms
100,916 KB
testcase_11 AC 671 ms
102,436 KB
testcase_12 AC 181 ms
82,800 KB
testcase_13 AC 399 ms
97,768 KB
testcase_14 AC 397 ms
98,060 KB
testcase_15 AC 187 ms
83,388 KB
testcase_16 AC 1,076 ms
116,684 KB
testcase_17 AC 244 ms
88,372 KB
testcase_18 AC 385 ms
98,052 KB
testcase_19 AC 688 ms
101,884 KB
testcase_20 AC 1,183 ms
138,744 KB
testcase_21 AC 1,163 ms
138,816 KB
testcase_22 AC 1,225 ms
138,560 KB
testcase_23 AC 1,156 ms
138,552 KB
testcase_24 AC 1,165 ms
138,720 KB
testcase_25 AC 1,235 ms
139,156 KB
testcase_26 AC 1,215 ms
138,848 KB
testcase_27 AC 1,211 ms
138,744 KB
testcase_28 AC 1,192 ms
139,284 KB
testcase_29 AC 1,201 ms
138,988 KB
testcase_30 AC 590 ms
138,424 KB
testcase_31 AC 578 ms
138,160 KB
testcase_32 AC 580 ms
138,472 KB
testcase_33 AC 589 ms
138,244 KB
testcase_34 AC 581 ms
138,228 KB
testcase_35 AC 420 ms
138,232 KB
testcase_36 AC 415 ms
138,364 KB
testcase_37 AC 417 ms
138,620 KB
testcase_38 AC 422 ms
138,260 KB
testcase_39 AC 417 ms
138,272 KB
testcase_40 AC 596 ms
138,948 KB
testcase_41 AC 608 ms
139,416 KB
testcase_42 AC 593 ms
139,280 KB
testcase_43 AC 613 ms
139,668 KB
testcase_44 AC 615 ms
139,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().strip()

mod = 10**9+7

class RangeMinimumQuery:
    def __init__(self, n, F=min, e=float("inf"), fill=None):
        self.n = n
        self.n0 = 2**(n-1).bit_length()
        self.F = F
        self.e = e
        if fill is None:
            fill = e
        self.data = [fill]*(2*self.n0)

    def construct(self, a):
        for i, x in enumerate(a):
            self.data[i+self.n0-1] = x
        for i in range(self.n0-2, -1, -1):
            self.data[i] = self.F(self.data[2*i+1], self.data[2*i+2])

    def query(self, l,r):
        l += self.n0
        r += self.n0
        res = self.e
        while l < r:
            if r&1:
                r -= 1
                res = self.F(res, self.data[r-1])
            if l&1:
                res = self.F(res, self.data[l-1])
                l += 1
            l >>=1
            r >>=1
        return res

    def update(self, i, x):
        i += self.n0-1
        self.data[i] = x
        while i:
            i = ~-i//2
            self.data[i] = self.F(self.data[2*i+1], self.data[2*i+2])

def updater(a,b):
    if a[0] == b[0]:
        return (a[0], (a[1]+b[1])%mod)
    elif a[0] > b[0]:
        return a
    else:
        return b

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

seg = RangeMinimumQuery(n, updater, (0,0), None)

b = [[ai, i] for i, ai in enumerate(a)]
b.sort(key=lambda x: (x[0], -x[1]))

for i in range(n):
    _, j = b[i]
    tmp = seg.query(0, j)
    if tmp == (0,0):
        seg.update(j, (tmp[0]+1, 1))
    else:
        seg.update(j, (tmp[0]+1, tmp[1]))

ans = seg.query(0, n)[1]
print(ans)
0