結果

問題 No.1996 <><
ユーザー lilictakalilictaka
提出日時 2022-07-02 00:23:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,736 ms / 2,000 ms
コード長 2,343 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,448 KB
最終ジャッジ日時 2024-05-04 18:54:04
合計ジャッジ時間 21,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,144 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 43 ms
54,912 KB
testcase_03 AC 59 ms
67,712 KB
testcase_04 AC 40 ms
54,144 KB
testcase_05 AC 47 ms
54,016 KB
testcase_06 AC 48 ms
54,400 KB
testcase_07 AC 49 ms
54,656 KB
testcase_08 AC 124 ms
78,024 KB
testcase_09 AC 67 ms
67,072 KB
testcase_10 AC 118 ms
76,612 KB
testcase_11 AC 786 ms
110,464 KB
testcase_12 AC 1,459 ms
144,128 KB
testcase_13 AC 1,736 ms
144,448 KB
testcase_14 AC 1,659 ms
142,508 KB
testcase_15 AC 1,465 ms
135,320 KB
testcase_16 AC 1,296 ms
128,492 KB
testcase_17 AC 1,474 ms
136,320 KB
testcase_18 AC 943 ms
113,860 KB
testcase_19 AC 1,019 ms
118,016 KB
testcase_20 AC 1,030 ms
114,596 KB
testcase_21 AC 1,291 ms
129,892 KB
testcase_22 AC 1,482 ms
135,244 KB
testcase_23 AC 168 ms
80,384 KB
testcase_24 AC 877 ms
117,112 KB
testcase_25 AC 457 ms
93,580 KB
testcase_26 AC 778 ms
107,616 KB
testcase_27 AC 215 ms
84,352 KB
testcase_28 AC 92 ms
76,672 KB
testcase_29 AC 426 ms
90,392 KB
testcase_30 AC 133 ms
79,200 KB
testcase_31 AC 225 ms
85,248 KB
testcase_32 AC 115 ms
78,044 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 
dp = [0] * ((K+1) * (N+1))
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):
    dp[cnv(i,0)] = 1
    seg[0].add(zipped[i],1,ope)
    for k in range(1,K+1):
        if S[k] == '<':
            ind = zipped[i]
            dp[cnv(i,k)] = seg[k-1].sum(0,ind)
        elif S[k] == '>':
            ind = zipped[i]
            dp[cnv(i,k)] = seg[k-1].sum(ind+1,mX+1)
        seg[k].add(zipped[i],dp[cnv(i,k)],ope)
print(seg[K].sum(0,mX+1))
        
0