結果

問題 No.762 PDCAパス
ユーザー ntudantuda
提出日時 2022-10-30 22:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,620 KB
最終ジャッジ日時 2024-07-07 13:53:48
合計ジャッジ時間 8,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,156 KB
testcase_01 AC 42 ms
55,524 KB
testcase_02 AC 44 ms
55,748 KB
testcase_03 AC 44 ms
55,396 KB
testcase_04 AC 44 ms
55,960 KB
testcase_05 AC 41 ms
55,968 KB
testcase_06 AC 41 ms
55,460 KB
testcase_07 AC 41 ms
55,200 KB
testcase_08 AC 42 ms
55,704 KB
testcase_09 AC 41 ms
55,240 KB
testcase_10 AC 42 ms
55,960 KB
testcase_11 AC 42 ms
56,556 KB
testcase_12 AC 42 ms
56,680 KB
testcase_13 AC 44 ms
56,728 KB
testcase_14 AC 42 ms
56,488 KB
testcase_15 AC 42 ms
56,752 KB
testcase_16 AC 43 ms
56,392 KB
testcase_17 AC 43 ms
55,128 KB
testcase_18 AC 41 ms
55,672 KB
testcase_19 AC 41 ms
55,492 KB
testcase_20 AC 42 ms
56,116 KB
testcase_21 AC 41 ms
55,184 KB
testcase_22 AC 182 ms
88,564 KB
testcase_23 AC 180 ms
88,448 KB
testcase_24 AC 244 ms
95,804 KB
testcase_25 AC 250 ms
95,244 KB
testcase_26 AC 184 ms
89,128 KB
testcase_27 AC 189 ms
88,928 KB
testcase_28 AC 324 ms
96,620 KB
testcase_29 AC 327 ms
96,476 KB
testcase_30 AC 314 ms
95,788 KB
testcase_31 AC 321 ms
95,028 KB
testcase_32 AC 318 ms
95,000 KB
testcase_33 AC 348 ms
94,468 KB
testcase_34 AC 346 ms
93,800 KB
testcase_35 AC 332 ms
94,948 KB
testcase_36 AC 372 ms
91,520 KB
testcase_37 AC 391 ms
91,876 KB
testcase_38 AC 388 ms
92,136 KB
testcase_39 AC 403 ms
92,892 KB
testcase_40 AC 385 ms
92,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(maxsize=1000)
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)
0