結果

問題 No.762 PDCAパス
ユーザー yakeshibayakeshiba
提出日時 2020-11-01 02:11:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 87,864 KB
最終ジャッジ日時 2024-07-22 05:35:47
合計ジャッジ時間 6,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 50 ms
54,016 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 47 ms
53,572 KB
testcase_07 AC 48 ms
54,016 KB
testcase_08 AC 50 ms
54,016 KB
testcase_09 AC 48 ms
53,760 KB
testcase_10 AC 47 ms
53,888 KB
testcase_11 AC 48 ms
53,760 KB
testcase_12 AC 47 ms
53,760 KB
testcase_13 AC 47 ms
53,632 KB
testcase_14 AC 47 ms
54,016 KB
testcase_15 AC 48 ms
53,760 KB
testcase_16 AC 49 ms
54,400 KB
testcase_17 AC 47 ms
53,888 KB
testcase_18 AC 48 ms
53,888 KB
testcase_19 AC 47 ms
53,760 KB
testcase_20 AC 48 ms
53,632 KB
testcase_21 AC 50 ms
53,888 KB
testcase_22 AC 156 ms
77,184 KB
testcase_23 AC 158 ms
77,312 KB
testcase_24 AC 211 ms
87,864 KB
testcase_25 AC 209 ms
87,680 KB
testcase_26 AC 158 ms
77,268 KB
testcase_27 AC 158 ms
78,000 KB
testcase_28 AC 236 ms
85,120 KB
testcase_29 AC 235 ms
84,864 KB
testcase_30 AC 222 ms
83,236 KB
testcase_31 AC 231 ms
83,508 KB
testcase_32 AC 211 ms
83,820 KB
testcase_33 AC 199 ms
81,664 KB
testcase_34 AC 214 ms
81,728 KB
testcase_35 AC 227 ms
81,588 KB
testcase_36 AC 202 ms
78,628 KB
testcase_37 AC 202 ms
78,720 KB
testcase_38 AC 201 ms
78,492 KB
testcase_39 AC 207 ms
78,604 KB
testcase_40 AC 206 ms
78,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

mod = 10**9+7

n, m = map(int,input().split())

S = input()
ind = defaultdict(list)
for i, s in enumerate(S):
    ind[s].append(i)

edge = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(lambda x:int(x)-1,input().split())
    if (S[u] == "P" and S[v] == "D") or (S[u] == "D" and S[v] == "C") or (S[u] == "C" and S[v] == "A"):
        edge[u].append(v)
    elif (S[u] == "D" and S[v] == "P") or (S[u] == "C" and S[v] == "D") or (S[u] == "A" and S[v] == "C"):
        edge[v].append(u)

dp = [0]*n
for p in ind["P"]:
    dp[p] = 1
    for to in edge[p]:
        dp[to] += dp[p]

for d in ind["D"]:
    for to in edge[d]:
        dp[to] += dp[d]
        
for c in ind["C"]:
    for to in edge[c]:
        dp[to] += dp[c]
        
ans = 0
for key in ind["A"]:
    ans += dp[key]
    
print(ans%mod)
0