結果
問題 | No.1996 <>< |
ユーザー | Shirotsume |
提出日時 | 2022-05-05 03:01:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 99,840 KB |
最終ジャッジ日時 | 2024-05-04 14:47:03 |
合計ジャッジ時間 | 4,244 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
57,472 KB |
testcase_01 | AC | 34 ms
51,968 KB |
testcase_02 | AC | 34 ms
52,352 KB |
testcase_03 | AC | 39 ms
59,136 KB |
testcase_04 | AC | 32 ms
52,224 KB |
testcase_05 | AC | 33 ms
52,480 KB |
testcase_06 | AC | 33 ms
52,224 KB |
testcase_07 | AC | 34 ms
51,840 KB |
testcase_08 | AC | 54 ms
64,640 KB |
testcase_09 | AC | 43 ms
60,416 KB |
testcase_10 | AC | 55 ms
63,744 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 | -- | - |
ソースコード
import sys input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) INF = 2 ** 63 - 1 mod = 10 ** 9 + 7 n, k = mi() a = li() s = input() upgraph = [[] for _ in range(n)] downgraph = [[] for _ in range(n)] for i in range(n): for j in range(i + 1, n): if a[i] < a[j]: upgraph[i].append(j) elif a[i] > a[j]: downgraph[i].append(j) dp = [[0] * (k + 1) for _ in range(n + 1)] for i in range(n): dp[i][0] = 1 for i in range(n): for j in range(k): if s[j] == '<': for to in upgraph[i]: dp[to][j + 1] += dp[i][j] dp[to][j + 1] %= mod elif s[j] == '>': for to in downgraph[i]: dp[to][j + 1] += dp[i][j] dp[to][j + 1] %= mod ans = 0 for i in range(n): ans += dp[i][k] ans %= mod print(ans)