結果

問題 No.1996 <><
ユーザー lilictakalilictaka
提出日時 2022-07-02 00:26:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,964 ms / 2,000 ms
コード長 2,267 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,996 KB
最終ジャッジ日時 2024-05-04 18:56:40
合計ジャッジ時間 24,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,272 KB
testcase_01 AC 48 ms
54,016 KB
testcase_02 AC 49 ms
54,272 KB
testcase_03 AC 67 ms
66,688 KB
testcase_04 AC 46 ms
54,144 KB
testcase_05 AC 47 ms
54,016 KB
testcase_06 AC 47 ms
54,272 KB
testcase_07 AC 48 ms
54,656 KB
testcase_08 AC 120 ms
77,280 KB
testcase_09 AC 65 ms
66,304 KB
testcase_10 AC 110 ms
76,732 KB
testcase_11 AC 898 ms
101,760 KB
testcase_12 AC 1,683 ms
126,336 KB
testcase_13 AC 1,964 ms
127,996 KB
testcase_14 AC 1,845 ms
125,440 KB
testcase_15 AC 1,631 ms
121,080 KB
testcase_16 AC 1,439 ms
115,776 KB
testcase_17 AC 1,607 ms
121,248 KB
testcase_18 AC 1,044 ms
105,672 KB
testcase_19 AC 1,157 ms
107,864 KB
testcase_20 AC 1,140 ms
105,128 KB
testcase_21 AC 1,475 ms
117,108 KB
testcase_22 AC 1,650 ms
119,968 KB
testcase_23 AC 178 ms
79,744 KB
testcase_24 AC 1,101 ms
108,080 KB
testcase_25 AC 546 ms
88,588 KB
testcase_26 AC 870 ms
100,352 KB
testcase_27 AC 269 ms
82,432 KB
testcase_28 AC 86 ms
74,496 KB
testcase_29 AC 508 ms
86,728 KB
testcase_30 AC 140 ms
78,424 KB
testcase_31 AC 279 ms
83,584 KB
testcase_32 AC 125 ms
77,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v,ope):
        self.update(i, ope(self[i],v))

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)

from collections import defaultdict
def compress(A):
    tmp = defaultdict(int)
    B = list(set(A))
    B.sort()
    zipped = [] #i番目のAの要素は何番目に大きいか
    unzipped = [] # i番目に大きいAの要素は何か
    for index,b in enumerate(B):
        tmp[b] = index
        unzipped.append(b)
    for a in A:
        zipped.append(tmp[a])
    return zipped,unzipped
from sys import stdin
input = stdin.readline
N,K = map(int,input().split())
mod = 10 ** 9 + 7
A = [0] + list(map(int,input().split()))
S = ['+'] + list(input())
zipped,unzipped = compress(A)
def cnv(i,k):
    return (K+1) * i + k 
mX =max(zipped)
seg = [SegmentTree([0] * (mX+1),lambda x,y:(x+y) % mod ,0) for _ in range(K+1)]
ope = lambda x,y:(x+y) % mod
for i in range(1,N+1):
    seg[0].add(zipped[i],1,ope)
    for k in range(1,K+1):
        if S[k] == '<':
            ind = zipped[i]
            tmp = seg[k-1].sum(0,ind)
        elif S[k] == '>':
            ind = zipped[i]
            tmp = seg[k-1].sum(ind+1,mX+1)
        seg[k].add(zipped[i],tmp,ope)
print(seg[K].sum(0,mX+1))
        
0