結果

問題 No.1996 <><
ユーザー lloyzlloyz
提出日時 2022-07-02 17:50:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,936 KB
最終ジャッジ日時 2024-05-05 14:54:59
合計ジャッジ時間 11,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 49 ms
60,800 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 70 ms
73,984 KB
testcase_09 AC 46 ms
59,904 KB
testcase_10 AC 67 ms
69,504 KB
testcase_11 AC 438 ms
86,468 KB
testcase_12 AC 826 ms
96,156 KB
testcase_13 AC 806 ms
96,936 KB
testcase_14 AC 813 ms
95,820 KB
testcase_15 AC 690 ms
92,856 KB
testcase_16 AC 609 ms
90,976 KB
testcase_17 AC 711 ms
93,112 KB
testcase_18 AC 450 ms
86,716 KB
testcase_19 AC 521 ms
88,028 KB
testcase_20 AC 483 ms
87,708 KB
testcase_21 AC 624 ms
90,744 KB
testcase_22 AC 711 ms
93,332 KB
testcase_23 AC 103 ms
76,800 KB
testcase_24 AC 442 ms
86,524 KB
testcase_25 AC 270 ms
81,152 KB
testcase_26 AC 375 ms
84,720 KB
testcase_27 AC 143 ms
77,976 KB
testcase_28 AC 54 ms
64,640 KB
testcase_29 AC 241 ms
81,024 KB
testcase_30 AC 86 ms
76,672 KB
testcase_31 AC 150 ms
78,464 KB
testcase_32 AC 74 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    def sum(self, l, r):
        '''範囲[l, r)(lからr-1まで)の総和を求める'''
        return (self._sum(r) - self._sum(l)) % self.mod

    def _sum(self, r):
        '''範囲[0, r)(0からr-1まで)の総和を求める'''
        s = 0
        while r > 0:
            s += self.data[r - 1]
            s %= self.mod
            r -= r & -r
        return s

from bisect import bisect_left
def compression(lst):
    sort_lst = sorted(set(lst))
    compression_lst = [None for _ in range(len(lst))]
    ele2ind_dict = dict()
    for i, ele in enumerate(lst):
        compression_lst[i] = bisect_left(sort_lst, ele)
        ele2ind_dict[ele] = compression_lst[i]
    return sort_lst, compression_lst, ele2ind_dict

n, k = map(int, input().split())
A = list(map(int, input().split()))
S = list(input())
mod = 10**9 + 7

sortedsetA, compA, _ = compression(A)
compB = [len(sortedsetA) - ai - 1 for ai in compA]
DP = [[0 for _ in range(n)] for _ in range(k + 1)]
for i in range(n):
    DP[0][i] = 1
for i in range(k):
    s = S[i]
    FT = Fenwick_Tree(n, mod)
    if s == '<':
        L = compA
    else:
        L = compB
    for j in range(n):
        ele = L[j]
        FT.add(ele, DP[i][j])
        if ele > 0:
            DP[i + 1][j] = FT._sum(ele)

ans = 0
for i in range(n):
    ans += DP[k][i]
    ans %= mod
print(ans)
0