結果

問題 No.762 PDCAパス
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-24 18:29:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 554 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 776,576 KB
最終ジャッジ日時 2024-12-14 16:57:24
合計ジャッジ時間 24,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,572 KB
testcase_01 MLE -
testcase_02 AC 32 ms
17,444 KB
testcase_03 MLE -
testcase_04 AC 31 ms
17,572 KB
testcase_05 MLE -
testcase_06 AC 31 ms
17,568 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 32 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 32 ms
10,752 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 528 ms
24,960 KB
testcase_25 AC 516 ms
25,088 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 556 ms
21,120 KB
testcase_29 AC 546 ms
21,248 KB
testcase_30 AC 544 ms
19,200 KB
testcase_31 AC 534 ms
19,072 KB
testcase_32 AC 527 ms
19,072 KB
testcase_33 AC 514 ms
17,280 KB
testcase_34 AC 508 ms
17,024 KB
testcase_35 AC 513 ms
17,024 KB
testcase_36 AC 644 ms
23,040 KB
testcase_37 AC 627 ms
23,040 KB
testcase_38 AC 603 ms
23,040 KB
testcase_39 AC 609 ms
22,912 KB
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
S='PDCA'
s='#'+input()
g=[[] for _ in range(n+1)]
for _ in range(m):
    u,v=map(int,input().split())
    if S.index(s[u])-S.index(s[v])==1:
        g[v].append(u)
    elif S.index(s[v])-S.index(s[u])==1:
        g[u].append(v)
from collections import deque
q=deque()
mod=10**9+7
ans=0
for i in range(1,n+1):
    if s[i]=='P' and len(g[i])>0:
        q.append((i,1))
while q:
    now,cnt=q.popleft()
    if cnt==4:
        ans+=1
        ans%=mod
        continue
    for to in g[now]:
        q.append((to,cnt+1))
print(ans)
0