結果

問題 No.1996 <><
ユーザー sotanishysotanishy
提出日時 2022-07-01 22:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,252 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,940 KB
最終ジャッジ日時 2024-05-04 16:47:52
合計ジャッジ時間 14,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,232 KB
testcase_01 AC 36 ms
53,772 KB
testcase_02 AC 37 ms
52,896 KB
testcase_03 AC 44 ms
62,404 KB
testcase_04 AC 34 ms
53,880 KB
testcase_05 AC 33 ms
52,664 KB
testcase_06 AC 33 ms
52,896 KB
testcase_07 AC 32 ms
53,144 KB
testcase_08 AC 52 ms
74,128 KB
testcase_09 AC 41 ms
62,224 KB
testcase_10 AC 59 ms
72,016 KB
testcase_11 AC 505 ms
85,728 KB
testcase_12 AC 949 ms
94,568 KB
testcase_13 AC 1,252 ms
94,940 KB
testcase_14 AC 1,150 ms
94,384 KB
testcase_15 AC 974 ms
91,612 KB
testcase_16 AC 831 ms
89,788 KB
testcase_17 AC 984 ms
91,712 KB
testcase_18 AC 566 ms
85,724 KB
testcase_19 AC 696 ms
87,360 KB
testcase_20 AC 688 ms
87,044 KB
testcase_21 AC 862 ms
90,068 KB
testcase_22 AC 1,054 ms
92,260 KB
testcase_23 AC 94 ms
77,132 KB
testcase_24 AC 588 ms
85,584 KB
testcase_25 AC 282 ms
81,052 KB
testcase_26 AC 464 ms
84,012 KB
testcase_27 AC 128 ms
77,836 KB
testcase_28 AC 52 ms
65,648 KB
testcase_29 AC 256 ms
80,928 KB
testcase_30 AC 73 ms
76,528 KB
testcase_31 AC 128 ms
78,348 KB
testcase_32 AC 66 ms
75,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left

class FenwickTree:
    def __init__(self, size):
        self.data = [0] * (size + 1)
        self.size = size

    # i is exclusive
    def prefix_sum(self, i):
        s = 0
        while i > 0:
            s = (s + self.data[i]) % mod
            i -= i & -i
        return s

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

class Compress:
    def __init__(self, vs):
        self.xs = list(set(vs))
        self.xs.sort()

    def compress(self, x):
        return bisect_left(self.xs, x)

    def decompress(self, i):
        return self.xs[i]

    def size(self):
        return len(self.xs)

N, K = map(int, input().split())
A = list(map(int, input().split()))
s = input().rstrip()
comp = Compress(A)
A = [comp.compress(a) for a in A]
M = comp.size()
mod = 10**9 + 7
dp = [FenwickTree(M) for _ in range(K+1)]
for a in A:
    for k in range(K)[::-1]:
        if s[k] == '<':
            c = dp[k].prefix_sum(a)
            dp[k+1].add(a, c)
        else:
            c = dp[k].prefix_sum(M) - dp[k].prefix_sum(a+1)
            dp[k+1].add(a, c)
    dp[0].add(a, 1)
print(dp[K].prefix_sum(M))
0