結果

問題 No.748 yuki国のお財布事情
ユーザー simansiman
提出日時 2022-04-25 05:26:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,042 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-06-27 00:23:45
合計ジャッジ時間 13,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,416 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 82 ms
12,032 KB
testcase_03 AC 83 ms
12,160 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 83 ms
12,032 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 83 ms
12,160 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 85 ms
12,288 KB
testcase_13 AC 189 ms
13,952 KB
testcase_14 AC 261 ms
15,616 KB
testcase_15 AC 210 ms
14,592 KB
testcase_16 AC 423 ms
18,944 KB
testcase_17 AC 914 ms
28,416 KB
testcase_18 AC 987 ms
29,824 KB
testcase_19 AC 1,042 ms
30,976 KB
testcase_20 AC 919 ms
28,800 KB
testcase_21 AC 957 ms
30,080 KB
testcase_22 AC 83 ms
12,160 KB
testcase_23 AC 84 ms
12,160 KB
testcase_24 AC 87 ms
12,032 KB
testcase_25 AC 928 ms
28,416 KB
testcase_26 AC 1,014 ms
30,848 KB
testcase_27 AC 998 ms
30,848 KB
testcase_28 AC 697 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(n)
    @size = Array.new(n, 1)
    @rank = Array.new(n, 0)
    @parent = []

    (0..n).each do |i|
      @parent[i] = i
    end
  end

  def find(x)
    if @parent[x] == x
      x
    else
      @parent[x] = find(@parent[x])
    end
  end

  def unite(x, y)
    x = find(x)
    y = find(y)
    return if x == y

    if @rank[x] < @rank[y]
      @parent[x] = y
      @size[y] += @size[x]
    else
      @parent[y] = x
      @size[x] += @size[y]

      @rank[x] += 1 if @rank[x] == @rank[y]
    end
  end

  def same?(x, y)
    find(x) == find(y)
  end

  def size(x)
    @size[find(x)]
  end
end

N, M, K = gets.split.map(&:to_i)
E = []

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

  E << [a, b, c, 0]
end

uf = UnionFind.new(N + 1)

K.times do
  e = gets.to_i
  E[e - 1][-1] = -1
end

E.sort_by! { |a, b, c, d| [d, c] }
sum = E.map { |e| e[-2] }.sum
ans = 0

E.each do |a, b, c, d|
  if d == -1
    uf.unite(a, b)
    ans += c
  elsif !uf.same?(a, b)
    uf.unite(a, b)
    ans += c
  end
end

puts sum - ans
0