結果

問題 No.992 最長増加部分列の数え上げ
ユーザー maspymaspy
提出日時 2020-03-25 14:06:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,295 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 69,996 KB
最終ジャッジ日時 2024-06-10 11:44:49
合計ジャッジ時間 46,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 680 ms
31,988 KB
testcase_05 AC 492 ms
26,836 KB
testcase_06 AC 837 ms
38,848 KB
testcase_07 AC 620 ms
29,616 KB
testcase_08 AC 307 ms
20,536 KB
testcase_09 AC 619 ms
30,412 KB
testcase_10 AC 844 ms
38,656 KB
testcase_11 AC 1,076 ms
44,784 KB
testcase_12 AC 210 ms
17,696 KB
testcase_13 AC 575 ms
28,948 KB
testcase_14 AC 588 ms
29,264 KB
testcase_15 AC 216 ms
17,748 KB
testcase_16 AC 1,719 ms
65,332 KB
testcase_17 AC 339 ms
20,408 KB
testcase_18 AC 590 ms
28,740 KB
testcase_19 AC 1,056 ms
44,272 KB
testcase_20 AC 1,916 ms
69,848 KB
testcase_21 AC 1,951 ms
69,936 KB
testcase_22 TLE -
testcase_23 AC 1,908 ms
69,840 KB
testcase_24 AC 1,913 ms
69,996 KB
testcase_25 AC 1,890 ms
69,684 KB
testcase_26 AC 1,947 ms
69,748 KB
testcase_27 AC 1,936 ms
69,852 KB
testcase_28 AC 1,918 ms
69,712 KB
testcase_29 AC 1,933 ms
69,832 KB
testcase_30 AC 800 ms
59,100 KB
testcase_31 AC 831 ms
59,152 KB
testcase_32 AC 818 ms
59,164 KB
testcase_33 AC 843 ms
58,980 KB
testcase_34 AC 822 ms
59,260 KB
testcase_35 AC 756 ms
59,212 KB
testcase_36 AC 775 ms
59,096 KB
testcase_37 AC 746 ms
59,100 KB
testcase_38 AC 768 ms
59,176 KB
testcase_39 AC 766 ms
59,108 KB
testcase_40 AC 1,048 ms
59,572 KB
testcase_41 AC 1,005 ms
59,580 KB
testcase_42 AC 938 ms
59,580 KB
testcase_43 AC 959 ms
59,576 KB
testcase_44 AC 1,020 ms
59,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from bisect import bisect_left
import itertools
MOD = 10**9 + 7
INF = 2 * 10 ** 9 + 10
N = int(readline())
A = (0,) + tuple(int(x) + 10 ** 9 + 1 for x in read().split())
LIS = [0] * (N + 1)
dp = [INF] * (N + 1)
dp[0] = 0
for n, x in enumerate(A[1:], 1):
    m = bisect_left(dp, x)
    dp[m] = x
    LIS[n] = m


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


M_LIS = max(LIS)
LIS_cnt = [0] * (M_LIS + 1)
for i, x in enumerate(LIS):
    LIS_cnt[x] += 1
LIS_cnt = tuple(itertools.accumulate(LIS_cnt))

keys = [(x << 32) + y for x, y in zip(LIS, A)]
s_keys = sorted(keys)
key_rank = {x: i for i, x in enumerate(s_keys)}

bit = BinaryIndexedTree([0] * (N + 1))  # key の値に対する数え上げを管理

answer = 0
for L, k, a in zip(LIS[1:], keys[1:], A[1:]):
    if L == 1:
        x = 1
    else:
        r_key = k - (1 << 32)
        right = bisect_left(s_keys, r_key) - 1
        left = LIS_cnt[L - 2]
        x = bit.get_sum(right) - bit.get_sum(left - 1)
    if L == M_LIS:
        answer += x
    else:
        bit.add(key_rank[k], x % MOD)

print(answer % MOD)
0