結果

問題 No.1996 <><
ユーザー lilictakalilictaka
提出日時 2022-07-02 00:28:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 3,003 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 128,492 KB
最終ジャッジ日時 2024-05-04 18:58:23
合計ジャッジ時間 23,283 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,636 KB
testcase_01 AC 37 ms
55,460 KB
testcase_02 AC 38 ms
55,340 KB
testcase_03 AC 51 ms
67,784 KB
testcase_04 AC 41 ms
55,000 KB
testcase_05 AC 35 ms
54,168 KB
testcase_06 AC 35 ms
55,288 KB
testcase_07 AC 38 ms
55,264 KB
testcase_08 AC 105 ms
78,248 KB
testcase_09 AC 50 ms
67,292 KB
testcase_10 AC 91 ms
77,756 KB
testcase_11 AC 928 ms
101,888 KB
testcase_12 AC 1,521 ms
126,916 KB
testcase_13 TLE -
testcase_14 AC 1,862 ms
126,108 KB
testcase_15 AC 1,607 ms
121,096 KB
testcase_16 AC 1,477 ms
116,248 KB
testcase_17 AC 1,627 ms
121,880 KB
testcase_18 AC 1,052 ms
106,680 KB
testcase_19 AC 1,183 ms
108,104 KB
testcase_20 AC 1,154 ms
106,744 KB
testcase_21 AC 1,517 ms
117,480 KB
testcase_22 AC 1,736 ms
120,908 KB
testcase_23 AC 162 ms
80,032 KB
testcase_24 AC 1,050 ms
109,564 KB
testcase_25 AC 567 ms
89,132 KB
testcase_26 AC 899 ms
101,552 KB
testcase_27 AC 262 ms
83,456 KB
testcase_28 AC 72 ms
77,404 KB
testcase_29 AC 491 ms
86,972 KB
testcase_30 AC 117 ms
78,496 KB
testcase_31 AC 252 ms
84,036 KB
testcase_32 AC 104 ms
78,092 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 
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):
    seg[0].opeupdate(zipped[i],1,ope)
    for k in range(1,K+1):
        if S[k] == '<':
            ind = zipped[i]
            tmp = seg[k-1].query(0,ind)
        elif S[k] == '>':
            ind = zipped[i]
            tmp = seg[k-1].query(ind+1,mX+1)
        seg[k].opeupdate(zipped[i],tmp,ope)
print(seg[K].query(0,mX+1))
        
0