結果

問題 No.762 PDCAパス
ユーザー yakeshibayakeshiba
提出日時 2020-11-01 01:57:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 561,720 KB
最終ジャッジ日時 2024-07-22 05:35:40
合計ジャッジ時間 5,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,824 KB
testcase_01 AC 48 ms
53,680 KB
testcase_02 AC 46 ms
54,268 KB
testcase_03 AC 43 ms
54,484 KB
testcase_04 AC 42 ms
55,376 KB
testcase_05 AC 48 ms
54,976 KB
testcase_06 AC 42 ms
54,292 KB
testcase_07 AC 42 ms
54,516 KB
testcase_08 AC 42 ms
54,068 KB
testcase_09 AC 43 ms
54,084 KB
testcase_10 AC 42 ms
54,464 KB
testcase_11 AC 43 ms
54,724 KB
testcase_12 AC 43 ms
53,932 KB
testcase_13 AC 43 ms
53,776 KB
testcase_14 AC 43 ms
54,984 KB
testcase_15 AC 43 ms
53,624 KB
testcase_16 AC 45 ms
56,128 KB
testcase_17 AC 42 ms
54,460 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 42 ms
54,064 KB
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

mod = 10**9+7

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

edge = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(lambda x:int(x)-1,input().split())
    edge[u].append(v)
    edge[v].append(u)
  
D = {}
C = {}
A = {}

for k, v in enumerate(S):
    if v != "P":
        continue
    for to in edge[k]:
        if S[to] == "D":
            D[str(k)+" "+str(to)] = 1
    #print(D)
                
    for i in D.keys():
        j = int(i[-1])
        for to in edge[j]:
            if S[to] == "C":
                C[i+" "+str(to)] = 1
    #print(C)
    
    for i in C.keys():
        j = int(i[-1])
        for to in edge[j]:
            if S[to] == "A":
                A[i+" "+str(to)] = 1
                
    #print(A)

print(len(A.keys())%mod)
0