結果

問題 No.762 PDCAパス
ユーザー eQeeQe
提出日時 2020-05-06 00:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 88,756 KB
最終ジャッジ日時 2024-06-27 10:46:10
合計ジャッジ時間 5,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,152 KB
testcase_01 AC 52 ms
65,280 KB
testcase_02 AC 47 ms
65,536 KB
testcase_03 AC 46 ms
64,896 KB
testcase_04 AC 47 ms
65,024 KB
testcase_05 AC 46 ms
65,408 KB
testcase_06 AC 46 ms
65,536 KB
testcase_07 AC 45 ms
64,896 KB
testcase_08 AC 46 ms
65,152 KB
testcase_09 AC 46 ms
65,104 KB
testcase_10 AC 45 ms
65,160 KB
testcase_11 AC 46 ms
65,152 KB
testcase_12 AC 47 ms
65,536 KB
testcase_13 AC 46 ms
65,280 KB
testcase_14 AC 47 ms
65,152 KB
testcase_15 AC 46 ms
65,152 KB
testcase_16 AC 48 ms
65,664 KB
testcase_17 AC 48 ms
65,536 KB
testcase_18 AC 47 ms
65,408 KB
testcase_19 AC 46 ms
65,408 KB
testcase_20 AC 47 ms
65,408 KB
testcase_21 AC 47 ms
65,536 KB
testcase_22 AC 122 ms
82,176 KB
testcase_23 AC 120 ms
82,464 KB
testcase_24 AC 179 ms
88,544 KB
testcase_25 AC 181 ms
88,756 KB
testcase_26 AC 129 ms
82,816 KB
testcase_27 AC 128 ms
82,836 KB
testcase_28 AC 203 ms
86,912 KB
testcase_29 AC 220 ms
87,024 KB
testcase_30 AC 211 ms
86,524 KB
testcase_31 AC 214 ms
86,548 KB
testcase_32 AC 211 ms
86,292 KB
testcase_33 AC 203 ms
85,440 KB
testcase_34 AC 223 ms
85,856 KB
testcase_35 AC 209 ms
85,760 KB
testcase_36 AC 170 ms
84,352 KB
testcase_37 AC 168 ms
84,364 KB
testcase_38 AC 161 ms
84,328 KB
testcase_39 AC 162 ms
84,488 KB
testcase_40 AC 159 ms
84,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
import sys
from collections import deque, defaultdict
from heapq import heappop,heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7

s=None
g=[[] for i in range(MAX)]
mem=[-1]*MAX

def rec(u):
  global s, g, mem

  if s[u]==3: return 1
  if mem[u]!=-1: return mem[u]

  res=0
  for v in g[u]:
    if s[u]+1==s[v]:
      res+=rec(v)
      res%=MOD

  mem[u]=res
  return res


def main():
  global s, g

  N,M=map(int, input().split())

  d={'P':0, 'D':1, 'C':2, 'A':3}

  s=input()
  s=list(map(lambda c: d[c], s))

  for i in range(M):
    u,v=map(int, input().split())
    u-=1
    v-=1

    if s[u]+1==s[v]: g[u].append(v)
    if s[v]+1==s[u]: g[v].append(u)

  ans=0
  for i in range(N):
    if s[i]==0:
      ans+=rec(i)
      ans%=MOD
  print(ans)


if __name__=='__main__':
    main()
0