結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-04 18:22:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 965 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-11-26 02:52:11
合計ジャッジ時間 47,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 29 ms
21,888 KB
testcase_02 AC 29 ms
16,000 KB
testcase_03 AC 29 ms
22,016 KB
testcase_04 AC 28 ms
16,128 KB
testcase_05 AC 28 ms
21,760 KB
testcase_06 AC 29 ms
16,000 KB
testcase_07 AC 29 ms
22,016 KB
testcase_08 AC 36 ms
16,128 KB
testcase_09 AC 28 ms
22,144 KB
testcase_10 AC 34 ms
16,000 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 215 ms
15,872 KB
testcase_24 TLE -
testcase_25 AC 1,506 ms
10,880 KB
testcase_26 TLE -
testcase_27 AC 530 ms
11,008 KB
testcase_28 AC 33 ms
10,752 KB
testcase_29 AC 1,390 ms
10,880 KB
testcase_30 AC 92 ms
10,752 KB
testcase_31 AC 571 ms
10,752 KB
testcase_32 AC 47 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

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