結果

問題 No.762 PDCAパス
ユーザー eQeeQe
提出日時 2020-05-06 00:26:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 88,408 KB
最終ジャッジ日時 2024-06-27 10:33:41
合計ジャッジ時間 7,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,588 KB
testcase_01 AC 52 ms
65,672 KB
testcase_02 AC 52 ms
65,416 KB
testcase_03 AC 53 ms
66,336 KB
testcase_04 AC 56 ms
65,928 KB
testcase_05 AC 53 ms
65,816 KB
testcase_06 AC 53 ms
66,292 KB
testcase_07 AC 53 ms
65,340 KB
testcase_08 AC 52 ms
66,932 KB
testcase_09 AC 51 ms
65,324 KB
testcase_10 AC 51 ms
65,112 KB
testcase_11 AC 52 ms
65,660 KB
testcase_12 AC 51 ms
65,780 KB
testcase_13 AC 52 ms
65,728 KB
testcase_14 AC 52 ms
66,160 KB
testcase_15 AC 53 ms
66,404 KB
testcase_16 AC 53 ms
65,368 KB
testcase_17 AC 52 ms
66,604 KB
testcase_18 AC 52 ms
66,660 KB
testcase_19 AC 53 ms
65,756 KB
testcase_20 AC 53 ms
65,972 KB
testcase_21 AC 53 ms
65,640 KB
testcase_22 AC 138 ms
81,804 KB
testcase_23 AC 136 ms
81,800 KB
testcase_24 AC 194 ms
88,404 KB
testcase_25 AC 191 ms
88,408 KB
testcase_26 AC 144 ms
82,780 KB
testcase_27 AC 146 ms
82,884 KB
testcase_28 AC 225 ms
86,676 KB
testcase_29 AC 252 ms
86,592 KB
testcase_30 AC 247 ms
86,032 KB
testcase_31 AC 248 ms
86,416 KB
testcase_32 AC 243 ms
85,764 KB
testcase_33 AC 231 ms
84,996 KB
testcase_34 AC 239 ms
85,724 KB
testcase_35 AC 232 ms
85,804 KB
testcase_36 AC 194 ms
83,920 KB
testcase_37 AC 194 ms
84,248 KB
testcase_38 AC 184 ms
84,212 KB
testcase_39 AC 188 ms
83,996 KB
testcase_40 AC 189 ms
83,904 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


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