結果

問題 No.762 PDCAパス
ユーザー ttrttr
提出日時 2020-02-09 18:46:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-10-01 06:04:21
合計ジャッジ時間 10,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 25 ms
10,880 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 322 ms
15,488 KB
testcase_23 AC 333 ms
15,488 KB
testcase_24 AC 390 ms
26,880 KB
testcase_25 AC 406 ms
26,880 KB
testcase_26 AC 372 ms
17,024 KB
testcase_27 AC 354 ms
16,896 KB
testcase_28 AC 501 ms
28,288 KB
testcase_29 AC 505 ms
28,160 KB
testcase_30 AC 478 ms
25,728 KB
testcase_31 AC 474 ms
25,728 KB
testcase_32 AC 478 ms
25,728 KB
testcase_33 AC 432 ms
23,424 KB
testcase_34 AC 449 ms
23,424 KB
testcase_35 AC 439 ms
23,424 KB
testcase_36 AC 382 ms
20,608 KB
testcase_37 AC 395 ms
20,608 KB
testcase_38 AC 396 ms
20,608 KB
testcase_39 AC 394 ms
20,608 KB
testcase_40 AC 385 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
S = input()
E = [[] for _ in range(N)]
for _ in range(M):
    u,v = map(int, input().split())
    E[u-1].append(v-1)
    E[v-1].append(u-1)

mod = 10**9+7
PDCA = [0]*N
for i in range(N):
    if S[i] != "P":
        continue
    for v in E[i]:
        if S[v] == "D":
            PDCA[v] += 1
for i in range(N):
    if S[i] != "D":
        continue
    for v in E[i]:
        if S[v] == "C":
            PDCA[v] += PDCA[i]
for i in range(N):
    if S[i] != "C":
        continue
    for v in E[i]:
        if S[v] == "A":
            PDCA[v] += PDCA[i]
ans = 0
for i in range(N):
    if S[i] == "A":
        ans += PDCA[i]
        ans %= mod
print(ans)
0