結果

問題 No.1996 <><
ユーザー googol_S0googol_S0
提出日時 2022-07-01 21:34:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,937 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 102,048 KB
最終ジャッジ日時 2024-05-04 15:45:44
合計ジャッジ時間 24,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 49 ms
54,528 KB
testcase_03 AC 78 ms
70,528 KB
testcase_04 AC 47 ms
53,632 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 50 ms
55,168 KB
testcase_08 AC 142 ms
77,568 KB
testcase_09 AC 75 ms
68,224 KB
testcase_10 AC 126 ms
77,568 KB
testcase_11 AC 1,047 ms
89,964 KB
testcase_12 AC 1,927 ms
99,292 KB
testcase_13 AC 1,879 ms
101,004 KB
testcase_14 AC 1,937 ms
102,048 KB
testcase_15 AC 1,592 ms
97,660 KB
testcase_16 AC 1,554 ms
96,656 KB
testcase_17 AC 1,623 ms
97,824 KB
testcase_18 AC 1,076 ms
90,996 KB
testcase_19 AC 1,152 ms
92,412 KB
testcase_20 AC 1,132 ms
90,764 KB
testcase_21 AC 1,440 ms
93,820 KB
testcase_22 AC 1,626 ms
97,020 KB
testcase_23 AC 206 ms
77,496 KB
testcase_24 AC 1,043 ms
88,356 KB
testcase_25 AC 581 ms
80,580 KB
testcase_26 AC 884 ms
86,540 KB
testcase_27 AC 305 ms
78,244 KB
testcase_28 AC 106 ms
76,800 KB
testcase_29 AC 514 ms
80,320 KB
testcase_30 AC 158 ms
77,440 KB
testcase_31 AC 326 ms
78,480 KB
testcase_32 AC 138 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import *
mod=10**9+7
def init(N,node,A,unit,func):
  n=1
  while n<N:
    n<<=1
  for i in range(n*2-1):
    if len(node)<=i:
      node.append(deepcopy(unit))
    else:
      node[i]=deepcopy(unit)
  for i in range(len(A)):
    node[n-1+i]=deepcopy(A[i])
  for i in range(n-2,-1,-1):
    node[i]=func(node[(i<<1)+1],node[(i<<1)+2])
  node.append(func)
  node.append(unit)
  node.append(n)

def upd(node,x,a):
  y=node[-1]+x
  node[y-1]+=a
  while y>1:
    y=y>>1
    node[y-1]=node[-3](node[(y<<1)-1],node[y<<1])

def query(node,l,r):
  x,y=l,r
  z=node[-1]-1
  rr=deepcopy(node[-2])
  rl=deepcopy(node[-2])
  while True:
    if x==y:
      return node[-3](rl,rr)
    if x&1:
      rl=node[-3](rl,node[x+z])
      x+=1
    if y&1:
      rr=node[-3](node[y+z-1],rr)
    if z==0:
      return node[-3](rl,rr)
    x>>=1
    y>>=1
    z>>=1

N,K=map(int,input().split())
A=list(map(int,input().split()))
S=sorted(set(A))
D=dict()
for i in range(len(S)):
  D[S[i]]=i
for i in range(N):
  A[i]=D[A[i]]
S=input()
DP=[1]*N
for i in range(K):
  seg=[]
  init(N,seg,[],0,lambda x,y:x+y)
  for j in range(N):
    v=DP[j]
    if S[i]=='<':
      DP[j]=query(seg,0,A[j])%mod
    else:
      DP[j]=query(seg,A[j]+1,N)%mod
    upd(seg,A[j],v)
print(sum(DP)%mod)
0