結果

問題 No.1194 Replace
ユーザー simansiman
提出日時 2023-06-11 01:28:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,358 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 97,488 KB
最終ジャッジ日時 2024-06-11 00:44:08
合計ジャッジ時間 24,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 881 ms
59,596 KB
testcase_01 AC 940 ms
62,012 KB
testcase_02 AC 749 ms
56,428 KB
testcase_03 AC 631 ms
52,708 KB
testcase_04 AC 958 ms
61,828 KB
testcase_05 AC 866 ms
59,544 KB
testcase_06 AC 805 ms
58,740 KB
testcase_07 AC 1,336 ms
97,488 KB
testcase_08 AC 1,312 ms
97,160 KB
testcase_09 AC 1,310 ms
96,820 KB
testcase_10 AC 1,358 ms
97,304 KB
testcase_11 AC 1,358 ms
97,192 KB
testcase_12 AC 1,344 ms
97,192 KB
testcase_13 AC 699 ms
44,216 KB
testcase_14 AC 570 ms
41,652 KB
testcase_15 AC 551 ms
39,076 KB
testcase_16 AC 671 ms
43,464 KB
testcase_17 AC 501 ms
35,588 KB
testcase_18 AC 493 ms
34,208 KB
testcase_19 AC 692 ms
45,796 KB
testcase_20 AC 77 ms
12,288 KB
testcase_21 AC 77 ms
12,160 KB
testcase_22 AC 78 ms
12,160 KB
testcase_23 AC 261 ms
23,448 KB
testcase_24 AC 143 ms
17,024 KB
testcase_25 AC 107 ms
13,056 KB
testcase_26 AC 318 ms
25,472 KB
testcase_27 AC 123 ms
13,824 KB
testcase_28 AC 174 ms
18,048 KB
testcase_29 AC 90 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
nums = []
E = Hash.new { |h, k| h[k] = [] }

M.times do
  b, c = gets.split.map(&:to_i)

  nums << b
  nums << c
  E[c] << b
end

nums.uniq!
nums.sort!
visited = Hash.new(false)
memo = Hash.new

nums.reverse.each do |root|
  next if visited[root]

  queue = []
  queue << root
  until queue.empty?
    v = queue.shift

    next if visited[v]
    visited[v] = true
    memo[v] = root

    E[v].each do |u|
      next if u > root

      queue << u
    end
  end
end

sum = N * (1 + N) / 2

nums.each do |n|
  if memo[n]
    sum += memo[n] - n
  end
end

puts sum
0