結果

問題 No.1996 <><
ユーザー lilictakalilictaka
提出日時 2022-07-02 00:17:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 3,088 bytes
コンパイル時間 863 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 145,776 KB
最終ジャッジ日時 2024-05-04 18:48:41
合計ジャッジ時間 26,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,144 KB
testcase_01 AC 36 ms
53,888 KB
testcase_02 AC 42 ms
54,656 KB
testcase_03 AC 58 ms
67,328 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 38 ms
54,656 KB
testcase_07 AC 40 ms
54,784 KB
testcase_08 AC 106 ms
77,696 KB
testcase_09 AC 51 ms
67,072 KB
testcase_10 AC 94 ms
77,568 KB
testcase_11 AC 875 ms
111,156 KB
testcase_12 AC 1,661 ms
144,900 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,730 ms
135,912 KB
testcase_16 AC 1,594 ms
128,652 KB
testcase_17 AC 1,739 ms
137,268 KB
testcase_18 AC 1,137 ms
115,192 KB
testcase_19 AC 1,257 ms
117,752 KB
testcase_20 AC 1,157 ms
115,488 KB
testcase_21 AC 1,581 ms
130,408 KB
testcase_22 AC 1,848 ms
135,928 KB
testcase_23 AC 167 ms
80,560 KB
testcase_24 AC 1,092 ms
116,976 KB
testcase_25 AC 565 ms
93,180 KB
testcase_26 AC 876 ms
108,496 KB
testcase_27 AC 241 ms
84,280 KB
testcase_28 AC 78 ms
76,828 KB
testcase_29 AC 508 ms
91,448 KB
testcase_30 AC 126 ms
79,220 KB
testcase_31 AC 275 ms
86,304 KB
testcase_32 AC 113 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    """
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(k, x): k番目の値をxに更新 O(logN)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    """
    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        n: 要素数
        num: n以上の最小の2のべき乗
        tree: セグメント木(1-index)
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新
        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る
        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res
    def value(self,index):
        return self.query(index,index+1)
    def opeupdate(self,index,x,ope):
        self.update(index,ope(self.value(index),x))

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 = [SegTree([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].opeupdate(zipped[i],dp[cnv(i,0)],ope)
    for k in range(1,K+1):
        if S[k] == '<':
            ind = zipped[i]
            dp[cnv(i,k)] = seg[k-1].query(0,ind)
        elif S[k] == '>':
            ind = zipped[i]
            dp[cnv(i,k)] = seg[k-1].query(ind+1,mX+1)
        seg[k].opeupdate(zipped[i],dp[cnv(i,k)],ope)
print(seg[K].query(0,mX+1))
        
0