結果

問題 No.762 PDCAパス
ユーザー MIKI TakushiMIKI Takushi
提出日時 2018-12-16 23:56:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-09-25 06:40:59
合計ジャッジ時間 11,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 401 ms
11,776 KB
testcase_23 AC 410 ms
11,648 KB
testcase_24 AC 548 ms
26,496 KB
testcase_25 AC 576 ms
26,624 KB
testcase_26 AC 439 ms
13,696 KB
testcase_27 AC 443 ms
13,696 KB
testcase_28 AC 576 ms
23,936 KB
testcase_29 AC 591 ms
23,936 KB
testcase_30 AC 544 ms
21,248 KB
testcase_31 AC 554 ms
21,120 KB
testcase_32 AC 552 ms
21,248 KB
testcase_33 AC 511 ms
18,176 KB
testcase_34 AC 510 ms
18,304 KB
testcase_35 AC 514 ms
18,304 KB
testcase_36 AC 449 ms
13,952 KB
testcase_37 AC 450 ms
13,952 KB
testcase_38 AC 450 ms
13,952 KB
testcase_39 AC 451 ms
13,952 KB
testcase_40 AC 456 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
n,m = map(int, input().split())
s = list(input())
edge = [[] for _ in range(n)]
for _ in range(m):
    u,v = map(int, input().split())
    u -= 1
    v -= 1
    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)

    if (s[v]=="P" and s[u]=="D" or
        s[v]=="D" and s[u]=="C" or
        s[v]=="C" and s[u]=="A"
    ):
        edge[v].append(u)

dp = [[0 for _ in range(n)] for _ in range(4)]

for i in range(n):
    if s[i]=="P":
        dp[0][i] = 1

for u in range(n):
    for v in edge[u]:
        if s[v]=="D":
            dp[1][v] += dp[0][u]

for u in range(n):
    for v in edge[u]:
        if s[v]=="C":
            dp[2][v] += dp[1][u]

for u in range(n):
    for v in edge[u]:
        if s[v]=="A":
            dp[3][v] += dp[2][u]

res = sum(dp[3])%(10**9 + 7)
print(res)
0