結果

問題 No.762 PDCAパス
ユーザー simansiman
提出日時 2021-05-07 12:12:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-15 00:47:44
合計ジャッジ時間 12,297 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 94 ms
12,288 KB
testcase_03 AC 93 ms
12,288 KB
testcase_04 AC 93 ms
12,544 KB
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 92 ms
12,544 KB
testcase_08 AC 93 ms
12,416 KB
testcase_09 AC 92 ms
12,544 KB
testcase_10 AC 94 ms
12,416 KB
testcase_11 AC 93 ms
12,544 KB
testcase_12 AC 92 ms
12,416 KB
testcase_13 AC 94 ms
12,288 KB
testcase_14 AC 95 ms
12,544 KB
testcase_15 AC 93 ms
12,544 KB
testcase_16 AC 93 ms
12,672 KB
testcase_17 AC 94 ms
12,544 KB
testcase_18 AC 94 ms
12,544 KB
testcase_19 AC 93 ms
12,416 KB
testcase_20 AC 93 ms
12,288 KB
testcase_21 AC 94 ms
12,288 KB
testcase_22 AC 291 ms
14,592 KB
testcase_23 AC 289 ms
14,592 KB
testcase_24 AC 458 ms
33,792 KB
testcase_25 AC 459 ms
33,664 KB
testcase_26 AC 314 ms
14,208 KB
testcase_27 AC 311 ms
14,080 KB
testcase_28 AC 453 ms
34,304 KB
testcase_29 AC 451 ms
34,560 KB
testcase_30 AC 431 ms
29,312 KB
testcase_31 AC 432 ms
29,312 KB
testcase_32 AC 428 ms
29,440 KB
testcase_33 AC 405 ms
26,240 KB
testcase_34 AC 407 ms
26,240 KB
testcase_35 AC 414 ms
26,240 KB
testcase_36 AC 348 ms
18,304 KB
testcase_37 AC 346 ms
18,432 KB
testcase_38 AC 345 ms
18,560 KB
testcase_39 AC 343 ms
18,688 KB
testcase_40 AC 343 ms
18,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 10 ** 9 + 7
N, M = gets.split.map(&:to_i)
S = gets.chomp
E = Hash.new { |h, k| h[k] = [] }

M.times do
  u, v = gets.split.map(&:to_i)
  u -= 1
  v -= 1

  E[u] << v
  E[v] << u
end

counter = Hash.new(0)
que = []

S.chars.each_with_index do |s, idx|
  next if s != 'P'

  que << idx
  counter[idx] += 1
end

L = ['D', 'C', 'A']

3.times do |i|
  temp_counter = Hash.new(0)
  temp_que = Hash.new

  until que.empty?
    v = que.shift

    E[v].each do |u|
      next if S[u] != L[i]

      temp_counter[u] += counter[v]
      temp_counter[u] %= MOD
      temp_que[u] = true
    end
  end

  counter = temp_counter
  que = temp_que.keys
end

pp counter.values.sum % MOD
0