結果

問題 No.1996 <><
ユーザー tassei903tassei903
提出日時 2022-07-01 23:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,983 ms / 2,000 ms
コード長 2,377 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,028 KB
最終ジャッジ日時 2024-11-26 07:06:48
合計ジャッジ時間 22,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 54 ms
63,488 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 39 ms
52,992 KB
testcase_08 AC 99 ms
76,864 KB
testcase_09 AC 57 ms
64,640 KB
testcase_10 AC 91 ms
76,160 KB
testcase_11 AC 832 ms
101,376 KB
testcase_12 AC 1,510 ms
125,952 KB
testcase_13 AC 1,983 ms
127,028 KB
testcase_14 AC 1,881 ms
125,584 KB
testcase_15 AC 1,604 ms
120,220 KB
testcase_16 AC 1,432 ms
114,816 KB
testcase_17 AC 1,613 ms
121,600 KB
testcase_18 AC 1,018 ms
105,260 KB
testcase_19 AC 1,147 ms
107,472 KB
testcase_20 AC 1,119 ms
105,192 KB
testcase_21 AC 1,429 ms
116,616 KB
testcase_22 AC 1,736 ms
119,824 KB
testcase_23 AC 150 ms
79,108 KB
testcase_24 AC 962 ms
107,904 KB
testcase_25 AC 481 ms
88,380 KB
testcase_26 AC 801 ms
100,224 KB
testcase_27 AC 226 ms
82,092 KB
testcase_28 AC 69 ms
70,400 KB
testcase_29 AC 436 ms
85,844 KB
testcase_30 AC 123 ms
78,140 KB
testcase_31 AC 236 ms
83,072 KB
testcase_32 AC 97 ms
76,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


inf = 10**18
class SegmentTree:
    # 初期化処理
    # f : SegmentTreeにのせるモノイド
    # default : fに対する単位元
    def __init__(self, size, f=lambda x,y : min(x,y), default=inf):
        self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする
        self.default = default
        self.dat = [default]*(self.size*2) # 要素を単位元で初期化
        self.f = f
 
    def update(self, i, x):
        i += self.size
        self.dat[i] = self.f(self.dat[i],x)
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])
 
    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1
 
            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res
 
    def query2(self):
        s = 1
        #print(self.size)
        while s<self.size:
            #print(s)
            if self.dat[s*2]>self.dat[s*2+1]:
                s = s*2
            else:
                s = s*2+1
        return s-self.size
n,k = na()
a = na()
mod = 10**9+7
s = sorted(set(a))
zz = input()
m = len(s)
d = {x:i for i, x in enumerate(s)}
a = [d[a[i]] for i in range(n)]
f = [SegmentTree(m,lambda x,y:(x+y)%mod,default = 0) for i in range(k+1)]
for i in range(n):
    for j in range(k-1,-1,-1):
        if zz[j] == ">":
            z = f[j].query(a[i]+1,m)
            f[j+1].update(a[i],z)
        else:
            z = f[j].query(0,a[i])

            f[j+1].update(a[i],z)
    f[0].update(a[i],1)
    """for i in range(k+1):
        for j in range(m):
            print(f[i].query(j,j+1),end = " ")
        print()
    print()"""

print(f[-1].query(0,m))
0