結果

問題 No.762 PDCAパス
ユーザー maguroflymagurofly
提出日時 2021-03-23 19:55:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-05-04 10:39:50
合計ジャッジ時間 12,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 91 ms
12,416 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 89 ms
12,288 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 88 ms
12,160 KB
testcase_16 AC 95 ms
12,288 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 91 ms
12,160 KB
testcase_19 AC 89 ms
12,160 KB
testcase_20 AC 90 ms
12,160 KB
testcase_21 AC 89 ms
12,288 KB
testcase_22 AC 376 ms
12,416 KB
testcase_23 AC 374 ms
12,544 KB
testcase_24 AC 413 ms
22,272 KB
testcase_25 AC 410 ms
22,144 KB
testcase_26 AC 378 ms
13,184 KB
testcase_27 AC 376 ms
13,056 KB
testcase_28 AC 471 ms
22,400 KB
testcase_29 AC 462 ms
22,144 KB
testcase_30 AC 435 ms
18,432 KB
testcase_31 AC 440 ms
18,432 KB
testcase_32 AC 442 ms
18,560 KB
testcase_33 AC 416 ms
17,408 KB
testcase_34 AC 416 ms
17,408 KB
testcase_35 AC 415 ms
17,152 KB
testcase_36 AC 388 ms
14,080 KB
testcase_37 AC 385 ms
14,208 KB
testcase_38 AC 385 ms
14,080 KB
testcase_39 AC 387 ms
14,208 KB
testcase_40 AC 386 ms
14,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 10**9 + 7
N, M = gets.split.map(&:to_i)
S = gets.chomp
graph = Array.new(N) { [] }
PDCA = "PDCA"
M.times do
    (s, u), (t, v) = gets.split.map { |s| i = s.to_i - 1; [PDCA.index(S[i]), i] }.minmax
    graph[v] << u if s + 1 == t
end

vertices = Array.new(4) { [] }
N.times do |u|
    vertices[PDCA.index(S[u])] << u
end

dp = [1] * N
vertices[1, 3].each do |us|
    us.each do |u|
        dp[u] = graph[u].sum { |v| dp[v] } % MOD
    end
end

puts vertices[3].sum { |u| dp[u] } % MOD
0