結果

問題 No.762 PDCAパス
ユーザー ntudantuda
提出日時 2022-10-30 22:25:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 612 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 95,844 KB
最終ジャッジ日時 2024-07-07 13:51:07
合計ジャッジ時間 8,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
62,060 KB
testcase_01 AC 40 ms
55,628 KB
testcase_02 AC 41 ms
56,280 KB
testcase_03 AC 39 ms
55,632 KB
testcase_04 AC 36 ms
55,524 KB
testcase_05 AC 37 ms
55,852 KB
testcase_06 AC 37 ms
55,924 KB
testcase_07 AC 38 ms
55,712 KB
testcase_08 AC 36 ms
56,284 KB
testcase_09 AC 39 ms
55,972 KB
testcase_10 AC 41 ms
55,068 KB
testcase_11 AC 42 ms
56,344 KB
testcase_12 AC 42 ms
55,568 KB
testcase_13 AC 42 ms
56,316 KB
testcase_14 AC 40 ms
55,196 KB
testcase_15 AC 41 ms
56,804 KB
testcase_16 AC 40 ms
55,688 KB
testcase_17 AC 38 ms
55,764 KB
testcase_18 AC 37 ms
55,912 KB
testcase_19 AC 38 ms
54,788 KB
testcase_20 AC 40 ms
55,228 KB
testcase_21 AC 42 ms
55,564 KB
testcase_22 AC 1,013 ms
88,324 KB
testcase_23 AC 999 ms
87,872 KB
testcase_24 AC 163 ms
94,084 KB
testcase_25 AC 165 ms
94,456 KB
testcase_26 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

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()
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