結果
問題 | No.762 PDCAパス |
ユーザー | ntuda |
提出日時 | 2022-10-30 22:27:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 34,592 KB |
最終ジャッジ日時 | 2024-07-07 13:52:02 |
合計ジャッジ時間 | 4,797 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
16,128 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 27 ms
10,624 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | AC | 26 ms
10,752 KB |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | AC | 28 ms
10,880 KB |
testcase_07 | AC | 27 ms
10,752 KB |
testcase_08 | AC | 27 ms
10,752 KB |
testcase_09 | AC | 28 ms
10,624 KB |
testcase_10 | AC | 28 ms
10,752 KB |
testcase_11 | AC | 29 ms
10,752 KB |
testcase_12 | AC | 29 ms
10,752 KB |
testcase_13 | AC | 27 ms
10,624 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 27 ms
10,752 KB |
testcase_16 | AC | 28 ms
10,752 KB |
testcase_17 | AC | 29 ms
10,624 KB |
testcase_18 | AC | 28 ms
10,624 KB |
testcase_19 | AC | 27 ms
10,752 KB |
testcase_20 | AC | 27 ms
10,752 KB |
testcase_21 | AC | 26 ms
10,624 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
from functools import lru_cache MOD = 10 ** 9 + 7 N, M = map(int, input().split()) S = input() UV = [list(map(int, input().split())) for _ in range(M)] E = [[] for _ in range(N)] A = ["P", "D", "C", "A"] for u, v in UV: u -= 1 v -= 1 a = A.index(S[u]) if a < 3 and S[v] == A[a + 1]: E[u].append(v) if 0 < a and S[v] == A[a - 1]: E[v].append(u) @lru_cache() def dfs(x): if S[x] == "A": return 1 ret = 0 for v in E[x]: ret += dfs(v) return ret ans = 0 for i in range(N): if S[i] == "P": ans += dfs(i) ans %= MOD print(ans)