結果

問題 No.1996 <><
ユーザー rlangevinrlangevin
提出日時 2023-11-13 00:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,144 KB
最終ジャッジ日時 2024-09-26 03:07:40
合計ジャッジ時間 8,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,144 KB
testcase_01 AC 40 ms
54,144 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 AC 55 ms
62,080 KB
testcase_04 AC 43 ms
54,400 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 40 ms
54,528 KB
testcase_07 AC 39 ms
54,400 KB
testcase_08 AC 68 ms
76,144 KB
testcase_09 AC 47 ms
62,208 KB
testcase_10 AC 62 ms
73,344 KB
testcase_11 AC 363 ms
80,752 KB
testcase_12 AC 593 ms
84,144 KB
testcase_13 AC 552 ms
82,740 KB
testcase_14 AC 524 ms
82,868 KB
testcase_15 AC 506 ms
81,860 KB
testcase_16 AC 429 ms
81,700 KB
testcase_17 AC 480 ms
81,732 KB
testcase_18 AC 387 ms
80,260 KB
testcase_19 AC 367 ms
80,328 KB
testcase_20 AC 397 ms
80,384 KB
testcase_21 AC 459 ms
81,104 KB
testcase_22 AC 498 ms
81,988 KB
testcase_23 AC 97 ms
77,096 KB
testcase_24 AC 347 ms
79,496 KB
testcase_25 AC 196 ms
77,732 KB
testcase_26 AC 279 ms
79,408 KB
testcase_27 AC 117 ms
76,724 KB
testcase_28 AC 54 ms
67,456 KB
testcase_29 AC 186 ms
77,568 KB
testcase_30 AC 78 ms
76,812 KB
testcase_31 AC 129 ms
76,800 KB
testcase_32 AC 68 ms
76,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
from copy import deepcopy
def compress(lst):
    """
    B: lstを座圧したリスト
    D: indexから元の値を取得する辞書
    """
    B = []
    D = dict()
    vals = deepcopy(lst)
    vals = list(set(vals))
    vals.sort()
    for i in range(len(lst)):
        ind = bisect_left(vals, lst[i])
        B.append(ind)
    for i in range(len(B)):
        D[lst[i]] = B[i]
    return B, D, vals


class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def get_size(self, x):
        x = self.find(x)
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x


N, K = map(int, input().split())
A = list(map(int, input().split()))
mod = 10**9 + 7
A, _, _ = compress(A) 
S = list(input())
pre = [0] * (N + 1)
for i in range(N + 1):
    pre[i] = 1
    
for i in range(K):
    T = Fenwick_Tree(N)
    dp = [0] * (N + 1)
    for j in range(N):
        if S[i] == "<":
            dp[j] = T.sum(0, A[j])
        else:
            dp[j] = T.sum(A[j] + 1, N)
        dp[j] %= mod
        T.add(A[j], pre[j])
    dp, pre = pre, dp
    
print(sum(pre)%mod)
0