結果

問題 No.762 PDCAパス
ユーザー matsu7874matsu7874
提出日時 2018-11-28 02:19:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,196 KB
最終ジャッジ日時 2024-06-25 03:14:19
合計ジャッジ時間 11,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 417 ms
14,720 KB
testcase_23 AC 415 ms
14,592 KB
testcase_24 AC 407 ms
32,188 KB
testcase_25 AC 406 ms
32,196 KB
testcase_26 AC 456 ms
21,888 KB
testcase_27 AC 457 ms
21,888 KB
testcase_28 AC 466 ms
25,132 KB
testcase_29 AC 467 ms
24,944 KB
testcase_30 AC 463 ms
23,096 KB
testcase_31 AC 472 ms
23,100 KB
testcase_32 AC 471 ms
23,284 KB
testcase_33 AC 454 ms
20,224 KB
testcase_34 AC 455 ms
20,480 KB
testcase_35 AC 450 ms
20,604 KB
testcase_36 AC 436 ms
17,408 KB
testcase_37 AC 431 ms
17,408 KB
testcase_38 AC 437 ms
17,536 KB
testcase_39 AC 439 ms
17,408 KB
testcase_40 AC 435 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
mod = 10**9 + 7

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

s = input()

graph = [[] for i in range(n)]
edges = {
    'PD': [],
    'DC': [],
    'CA': [],
}
for _ in range(m):
    u, v = map(lambda x: int(x) - 1, input().split())
    if s[u] == 'P':
        if s[v] == 'D':
            edges['PD'].append((u, v))
    elif s[u] == 'D':
        if s[v] == 'C':
            edges['DC'].append((u, v))
        elif s[v] == 'P':
            edges['PD'].append((v, u))
    elif s[u] == 'C':
        if s[v] == 'A':
            edges['CA'].append((u, v))
        elif s[v] == 'D':
            edges['DC'].append((v, u))
    elif s[u] == 'A':
        if s[v] == 'C':
            edges['CA'].append((v, u))

cnt = collections.defaultdict(int)


for u, v in edges['PD']:
    cnt[v] += 1

for u, v in edges['DC']:
    cnt[v] += cnt[u]

total = 0
for u, v in edges['CA']:
    total += cnt[u]

print(total % mod)
0