結果

問題 No.1996 <><
ユーザー hir355hir355
提出日時 2022-07-01 21:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,087 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-05-04 16:13:35
合計ジャッジ時間 13,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 44 ms
60,160 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 60 ms
72,576 KB
testcase_09 AC 47 ms
60,800 KB
testcase_10 AC 62 ms
70,016 KB
testcase_11 AC 496 ms
85,888 KB
testcase_12 AC 938 ms
94,464 KB
testcase_13 AC 1,087 ms
94,592 KB
testcase_14 AC 1,064 ms
93,952 KB
testcase_15 AC 919 ms
91,520 KB
testcase_16 AC 788 ms
89,728 KB
testcase_17 AC 854 ms
91,776 KB
testcase_18 AC 483 ms
85,760 KB
testcase_19 AC 621 ms
87,296 KB
testcase_20 AC 601 ms
86,784 KB
testcase_21 AC 751 ms
89,728 KB
testcase_22 AC 908 ms
91,904 KB
testcase_23 AC 91 ms
76,928 KB
testcase_24 AC 495 ms
85,632 KB
testcase_25 AC 248 ms
80,640 KB
testcase_26 AC 398 ms
83,968 KB
testcase_27 AC 121 ms
77,696 KB
testcase_28 AC 55 ms
65,024 KB
testcase_29 AC 228 ms
80,384 KB
testcase_30 AC 84 ms
76,416 KB
testcase_31 AC 132 ms
78,080 KB
testcase_32 AC 75 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit: #0-indexed
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        i += 1
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


MOD = 10 ** 9 + 7
compress = lambda arr: {e: i for i, e in enumerate(sorted(set(arr)))}
n, k = map(int, input().split())
a = list(map(int, input().split()))
s = input()
cp = compress(a)
for i in range(n):
    a[i] = cp[a[i]]
fw = [Bit(n) for _ in range(k + 1)]
for i in range(n):
    for j in range(k, 0, -1):
        if s[j - 1] == '<':
            fw[j].add(a[i], fw[j - 1].sum(a[i] - 1) % MOD)
        else:
            fw[j].add(a[i], (fw[j - 1].sum(n - 1) - fw[j - 1].sum(a[i])) % MOD)
    fw[0].add(a[i], 1)
print(fw[k].sum(n - 1) % MOD)
0