結果

問題 No.762 PDCAパス
ユーザー maguroflymagurofly
提出日時 2021-03-23 19:55:17
言語 Ruby
(3.4.1)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-11-25 21:03:00
合計ジャッジ時間 11,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 76 ms
12,416 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 79 ms
12,032 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 77 ms
12,032 KB
testcase_09 AC 77 ms
12,160 KB
testcase_10 AC 78 ms
12,032 KB
testcase_11 AC 80 ms
12,160 KB
testcase_12 AC 79 ms
12,288 KB
testcase_13 AC 78 ms
12,160 KB
testcase_14 AC 78 ms
12,032 KB
testcase_15 AC 79 ms
12,032 KB
testcase_16 AC 84 ms
12,032 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 AC 78 ms
12,160 KB
testcase_19 AC 77 ms
12,288 KB
testcase_20 AC 75 ms
12,160 KB
testcase_21 AC 78 ms
12,032 KB
testcase_22 AC 331 ms
12,544 KB
testcase_23 AC 335 ms
12,416 KB
testcase_24 AC 351 ms
22,272 KB
testcase_25 AC 357 ms
22,272 KB
testcase_26 AC 337 ms
12,800 KB
testcase_27 AC 337 ms
12,928 KB
testcase_28 AC 413 ms
22,144 KB
testcase_29 AC 410 ms
22,272 KB
testcase_30 AC 385 ms
18,432 KB
testcase_31 AC 391 ms
18,432 KB
testcase_32 AC 388 ms
18,432 KB
testcase_33 AC 372 ms
17,152 KB
testcase_34 AC 365 ms
17,152 KB
testcase_35 AC 371 ms
17,280 KB
testcase_36 AC 342 ms
13,952 KB
testcase_37 AC 345 ms
14,208 KB
testcase_38 AC 343 ms
14,080 KB
testcase_39 AC 343 ms
14,080 KB
testcase_40 AC 345 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