結果

問題 No.762 PDCAパス
ユーザー wgrapewgrape
提出日時 2024-10-11 16:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 89,220 KB
最終ジャッジ日時 2024-10-11 16:41:20
合計ジャッジ時間 9,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,168 KB
testcase_01 AC 46 ms
54,912 KB
testcase_02 AC 46 ms
55,424 KB
testcase_03 AC 45 ms
54,912 KB
testcase_04 AC 45 ms
54,400 KB
testcase_05 AC 45 ms
55,168 KB
testcase_06 AC 45 ms
54,912 KB
testcase_07 AC 51 ms
55,040 KB
testcase_08 AC 46 ms
55,296 KB
testcase_09 AC 45 ms
55,296 KB
testcase_10 AC 45 ms
54,912 KB
testcase_11 AC 47 ms
55,040 KB
testcase_12 AC 46 ms
54,784 KB
testcase_13 AC 46 ms
54,784 KB
testcase_14 AC 47 ms
54,912 KB
testcase_15 AC 49 ms
55,168 KB
testcase_16 AC 46 ms
55,680 KB
testcase_17 AC 45 ms
55,040 KB
testcase_18 AC 46 ms
55,296 KB
testcase_19 AC 45 ms
55,040 KB
testcase_20 AC 46 ms
54,528 KB
testcase_21 AC 47 ms
54,784 KB
testcase_22 AC 152 ms
77,952 KB
testcase_23 AC 168 ms
78,080 KB
testcase_24 AC 288 ms
89,100 KB
testcase_25 AC 285 ms
89,220 KB
testcase_26 AC 162 ms
78,208 KB
testcase_27 AC 167 ms
78,072 KB
testcase_28 AC 331 ms
85,840 KB
testcase_29 AC 324 ms
86,528 KB
testcase_30 AC 354 ms
85,596 KB
testcase_31 AC 346 ms
85,576 KB
testcase_32 AC 377 ms
85,896 KB
testcase_33 AC 372 ms
85,184 KB
testcase_34 AC 373 ms
84,748 KB
testcase_35 AC 379 ms
85,224 KB
testcase_36 AC 406 ms
82,644 KB
testcase_37 AC 400 ms
82,876 KB
testcase_38 AC 424 ms
82,384 KB
testcase_39 AC 422 ms
83,128 KB
testcase_40 AC 402 ms
82,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
S = input()
from collections import defaultdict
dic = defaultdict(list)

from functools import lru_cache

for i in range(N):
    dic[S[i]].append(i)
T = "PDCA"

DIV = 1000000007
    
G = [[] for i in range(N)]
for _ in range(M):
    u,v = map(int,input().split())
    if S[u - 1] + S[v - 1] in T:
        G[v - 1].append(u - 1)
    if S[v - 1] + S[u - 1] in T:
        G[u - 1].append(v - 1)

@lru_cache(maxsize=1000)
def dfs(x):
    if S[x] == "P":
        return 1
    res = 0
    for child in G[x]:
        res += dfs(child)
        res %= DIV
    return res

ans = 0
for v in dic["A"]:
    ans += dfs(v)
    ans %= DIV
    
print(ans)
0