結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-04 18:22:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 965 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-05-04 14:45:13
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,256 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
11,008 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 AC 25 ms
11,008 KB
testcase_08 AC 35 ms
10,880 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 TLE -
testcase_12 -- -
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 #

import sys
input = sys.stdin.readline
mod = 10 ** 9 + 7

class BIT:
	def __init__(self, n):
		self.size = n
		self.bit = [0] * (n + 1)

	def add(self, k, p):
		t = k + 1
		while(t <= self.size):
			self.bit[t] += p
			self.bit[t] %= mod
			t += t & -t

	def sum(self, r):
		res, t = 0, r
		while(t > 0):
			res += self.bit[t]
			res %= mod
			t -= t & -t
		return res


"""
Main Code
"""

N, K = map(int, input().split())
a = list(map(int, input().split()))
s = [1 if(c == '<') else 0 for c in input().rstrip()]

lis = sorted(set(a))
d = {}
for i, k in enumerate(lis):
	d[k] = i
for i in range(N):
	a[i] = d[a[i]]
b = [len(lis) - 1 - i for i in a]


dp = [1] * N
for c in s:
	ndp = [0] * N
	bt = BIT(N)
	if(c == 1):
		for i, k in enumerate(a):
			bt.add(k, dp[i])
			ndp[i] = bt.sum(k)
			ndp[i] %= mod
	else:
		for i, k in enumerate(b):
			bt.add(k, dp[i])
			ndp[i] = bt.sum(k)
			ndp[i] %= mod
	dp = ndp[:]

ans = 0
for t in dp:
	ans += t
	ans %= mod
print(ans)
0