結果

問題 No.762 PDCAパス
ユーザー matsu7874matsu7874
提出日時 2018-11-28 01:59:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,183 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-06-25 02:40:38
合計ジャッジ時間 16,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 1,137 ms
15,360 KB
testcase_23 AC 1,150 ms
15,232 KB
testcase_24 AC 527 ms
30,848 KB
testcase_25 AC 525 ms
30,976 KB
testcase_26 AC 1,183 ms
16,768 KB
testcase_27 AC 1,161 ms
16,640 KB
testcase_28 AC 685 ms
32,128 KB
testcase_29 AC 682 ms
32,256 KB
testcase_30 AC 642 ms
28,672 KB
testcase_31 AC 648 ms
28,544 KB
testcase_32 AC 638 ms
28,544 KB
testcase_33 AC 620 ms
25,472 KB
testcase_34 AC 625 ms
25,216 KB
testcase_35 AC 627 ms
25,216 KB
testcase_36 AC 623 ms
20,992 KB
testcase_37 AC 608 ms
21,248 KB
testcase_38 AC 605 ms
21,120 KB
testcase_39 AC 591 ms
21,248 KB
testcase_40 AC 624 ms
21,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

n, m = map(int, input().split())
assert 2 <= n <= 10**5
assert 0 <= m <= 10**5

s = input()
assert len(s) == n
assert all(c in 'PCDA' for c in s)

graph = [[] for i in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    assert 1 <= u < v <= n
    assert (v-1) not in graph[u-1]
    assert (u-1) not in graph[v-1]
    graph[u - 1].append(v - 1)
    graph[v - 1].append(u - 1)


nodes = {c: [] for c in 'PDCA'}
pre = {
    'D': 'P',
    'C': 'D',
    'A': 'C',
}
for i in range(n):
    nodes[s[i]].append(i)


cnt = [1 if s[i] == 'P' else 0 for i in range(n)]
for c in 'DCA':
    for v in nodes[c]:
        for u in graph[v]:
            if s[u] == pre[c]:
                cnt[v] += cnt[u]
                cnt[v] %= mod
print(sum([cnt[v] for v in nodes['A']]) % mod)
0