結果

問題 No.1996 <><
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-07-01 22:05:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,086 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 120,692 KB
最終ジャッジ日時 2024-05-04 16:29:48
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,728 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 47 ms
57,728 KB
testcase_03 AC 61 ms
64,640 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 43 ms
52,608 KB
testcase_07 AC 52 ms
59,648 KB
testcase_08 AC 102 ms
76,160 KB
testcase_09 AC 59 ms
63,744 KB
testcase_10 AC 107 ms
76,340 KB
testcase_11 AC 1,663 ms
95,628 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

dp[i][j] = i番目までで、j個の場合の数

dp[i未満][j-1] から推移できる

ただし、A[?] < A[i] or A[?] > A[i] の時だけ

K個の セグ木に載せれば解ける

"""

from sys import stdin

mod = 10**9+7

class RangeBIT:

    def __init__(self,N,indexed): #0-indexed or 1-indexed 指定可能
        self.bit1 = [0] * (N+2)
        self.bit2 = [0] * (N+2)
        self.mode = indexed

    def bitadd(self,a,w,bit): #aにwを加える(1-origin)
 
        x = a
        while x <= (len(bit)-1):
            bit[x] += w
            bit[x] %= mod
            x += x & (-1 * x)
 
    def bitsum(self,a,bit): #ind 1~aまでの和を求める
 
        ret = 0
        x = a
        while x > 0:
            ret += bit[x]
            x -= x & (-1 * x)
        return ret % mod
    
    def add(self,l,r,w): #半開区間[l,r)にwを加える

        l = l + (1-self.mode)
        r = r + (1-self.mode)
        self.bitadd(l,-1*w*l,self.bit1)
        self.bitadd(r,w*r,self.bit1)
        self.bitadd(l,w,self.bit2)
        self.bitadd(r,-1*w,self.bit2)

    def sum(self,l,r): #半開区間[l,r)の区間和

        l = l + (1-self.mode)
        r = r + (1-self.mode)
        ret =  self.bitsum(r,self.bit1) + r * self.bitsum(r,self.bit2)
        ret -= self.bitsum(l,self.bit1) + l * self.bitsum(l,self.bit2)

        return ret

N,K = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))

s = list(stdin.readline()[:-1])

adic = {}
alis = []

for i in A:
    if i not in adic:
        adic[i] = 0
        alis.append(i)
alis.sort()

for i in range(len(alis)):
    adic[alis[i]] = i

A = [ adic[i] for i in A ]

XXX = len(adic) + 2
bit = [RangeBIT(XXX,0) for i in range(K+1)]

for i in range(N):

    for j in range(K,0,-1):

        if s[j-1] == "<":
            now = bit[j-1].sum(0,A[i])
            bit[j].add(A[i],A[i]+1, now % mod )

        else:
            now = bit[j-1].sum(A[i]+1,XXX)
            bit[j].add(A[i],A[i]+1, now % mod )

    bit[0].add(A[i],A[i]+1,1)

print (bit[K].sum(0,XXX) % mod)
            
        
0