結果

問題 No.1996 <><
ユーザー lilictakalilictaka
提出日時 2022-07-02 00:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,771 ms / 2,000 ms
コード長 2,326 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,660 KB
最終ジャッジ日時 2024-05-04 19:03:11
合計ジャッジ時間 21,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 46 ms
54,528 KB
testcase_03 AC 67 ms
66,560 KB
testcase_04 AC 48 ms
54,144 KB
testcase_05 AC 48 ms
53,760 KB
testcase_06 AC 43 ms
54,272 KB
testcase_07 AC 44 ms
54,528 KB
testcase_08 AC 105 ms
77,024 KB
testcase_09 AC 60 ms
66,048 KB
testcase_10 AC 98 ms
76,592 KB
testcase_11 AC 756 ms
101,504 KB
testcase_12 AC 1,505 ms
126,336 KB
testcase_13 AC 1,771 ms
127,660 KB
testcase_14 AC 1,683 ms
126,340 KB
testcase_15 AC 1,421 ms
120,976 KB
testcase_16 AC 1,261 ms
116,008 KB
testcase_17 AC 1,521 ms
121,492 KB
testcase_18 AC 962 ms
105,804 KB
testcase_19 AC 1,055 ms
108,380 KB
testcase_20 AC 1,060 ms
105,508 KB
testcase_21 AC 1,344 ms
117,608 KB
testcase_22 AC 1,527 ms
120,344 KB
testcase_23 AC 156 ms
79,872 KB
testcase_24 AC 1,016 ms
108,468 KB
testcase_25 AC 490 ms
88,344 KB
testcase_26 AC 790 ms
100,540 KB
testcase_27 AC 231 ms
82,432 KB
testcase_28 AC 81 ms
74,752 KB
testcase_29 AC 457 ms
86,548 KB
testcase_30 AC 133 ms
78,552 KB
testcase_31 AC 240 ms
83,712 KB
testcase_32 AC 114 ms
77,348 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)
ans = 0
for ind in sorted(list(set(zipped))):
    ans += seg[K][ind]
    ans %= mod
print(ans)
0