結果
問題 | No.1996 <>< |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-07-01 22:17:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 623 ms / 2,000 ms |
コード長 | 1,238 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 94,720 KB |
最終ジャッジ日時 | 2024-05-04 16:40:36 |
合計ジャッジ時間 | 9,935 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,224 KB |
testcase_01 | AC | 37 ms
51,840 KB |
testcase_02 | AC | 39 ms
52,608 KB |
testcase_03 | AC | 46 ms
59,136 KB |
testcase_04 | AC | 34 ms
52,096 KB |
testcase_05 | AC | 34 ms
52,608 KB |
testcase_06 | AC | 34 ms
52,352 KB |
testcase_07 | AC | 34 ms
52,480 KB |
testcase_08 | AC | 56 ms
68,992 KB |
testcase_09 | AC | 41 ms
59,392 KB |
testcase_10 | AC | 52 ms
68,352 KB |
testcase_11 | AC | 429 ms
85,504 KB |
testcase_12 | AC | 571 ms
94,720 KB |
testcase_13 | AC | 621 ms
94,592 KB |
testcase_14 | AC | 623 ms
93,696 KB |
testcase_15 | AC | 568 ms
91,008 KB |
testcase_16 | AC | 583 ms
89,472 KB |
testcase_17 | AC | 533 ms
91,264 KB |
testcase_18 | AC | 389 ms
85,472 KB |
testcase_19 | AC | 476 ms
87,084 KB |
testcase_20 | AC | 479 ms
86,656 KB |
testcase_21 | AC | 505 ms
89,856 KB |
testcase_22 | AC | 609 ms
91,964 KB |
testcase_23 | AC | 77 ms
77,184 KB |
testcase_24 | AC | 370 ms
85,760 KB |
testcase_25 | AC | 180 ms
80,512 KB |
testcase_26 | AC | 350 ms
83,584 KB |
testcase_27 | AC | 110 ms
77,568 KB |
testcase_28 | AC | 48 ms
61,568 KB |
testcase_29 | AC | 194 ms
80,256 KB |
testcase_30 | AC | 69 ms
76,288 KB |
testcase_31 | AC | 104 ms
77,916 KB |
testcase_32 | AC | 61 ms
75,904 KB |
ソースコード
mod = 10**9+7 class BIT: def __init__(self, n): self.size = n self.tree = [0]*(n+1) def build(self, list): self.tree[1:] = list.copy() for i in range(self.size+1): j = i + (i & (-i)) if j < self.size+1: self.tree[j] += self.tree[i] def sum(self, i): # [0, i) の要素の総和を返す s = 0 while i>0: s += self.tree[i] s %= mod i -= i & -i return s # 0 index を 1 index に変更 転倒数を求めるなら1を足していく def add(self, i, x): i += 1 while i <= self.size: self.tree[i] += x self.tree[i] %= mod i += i & -i n,k = map(int,input().split()) A = list(map(int,input().split())) S = input() dic = {a:i for i,a in enumerate(sorted(set(A)),1)} l = len(dic)+5 dp = [BIT(l) for i in range(k+1)] for i,a in enumerate(A): s = dic[a] for j in range(min(i+1,k+1)): if j == 0: dp[0].add(s,1) continue if S[j-1] == "<": x = dp[j-1].sum(s) else: x = dp[j-1].sum(l)-dp[j-1].sum(s+1) dp[j].add(s,x) print(dp[k].sum(l))