結果

問題 No.945 YKC饅頭
ユーザー simansiman
提出日時 2022-11-30 18:25:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,399 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-10-07 13:13:00
合計ジャッジ時間 31,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 81 ms
12,416 KB
testcase_02 AC 83 ms
12,416 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 81 ms
12,288 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 82 ms
12,288 KB
testcase_11 AC 85 ms
12,032 KB
testcase_12 AC 87 ms
12,032 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 83 ms
12,160 KB
testcase_15 AC 79 ms
12,032 KB
testcase_16 AC 79 ms
12,032 KB
testcase_17 AC 81 ms
12,288 KB
testcase_18 AC 80 ms
12,032 KB
testcase_19 AC 79 ms
12,288 KB
testcase_20 AC 78 ms
12,160 KB
testcase_21 AC 78 ms
12,288 KB
testcase_22 AC 86 ms
12,288 KB
testcase_23 AC 89 ms
12,288 KB
testcase_24 AC 89 ms
12,160 KB
testcase_25 AC 86 ms
12,288 KB
testcase_26 AC 83 ms
12,416 KB
testcase_27 AC 78 ms
12,288 KB
testcase_28 AC 79 ms
12,160 KB
testcase_29 AC 79 ms
12,160 KB
testcase_30 AC 77 ms
12,288 KB
testcase_31 AC 174 ms
13,568 KB
testcase_32 AC 396 ms
16,896 KB
testcase_33 AC 680 ms
17,664 KB
testcase_34 AC 518 ms
16,000 KB
testcase_35 AC 1,153 ms
20,096 KB
testcase_36 AC 388 ms
12,544 KB
testcase_37 AC 355 ms
13,056 KB
testcase_38 AC 423 ms
13,952 KB
testcase_39 AC 391 ms
16,000 KB
testcase_40 AC 652 ms
18,176 KB
testcase_41 AC 326 ms
16,512 KB
testcase_42 AC 613 ms
16,128 KB
testcase_43 AC 338 ms
12,416 KB
testcase_44 AC 801 ms
17,792 KB
testcase_45 AC 616 ms
14,976 KB
testcase_46 AC 232 ms
14,976 KB
testcase_47 AC 680 ms
16,512 KB
testcase_48 AC 176 ms
12,544 KB
testcase_49 AC 483 ms
16,512 KB
testcase_50 AC 732 ms
15,872 KB
testcase_51 AC 1,399 ms
20,864 KB
testcase_52 AC 1,294 ms
20,736 KB
testcase_53 AC 945 ms
20,736 KB
testcase_54 AC 1,182 ms
20,864 KB
testcase_55 AC 1,384 ms
20,736 KB
testcase_56 AC 199 ms
20,480 KB
testcase_57 AC 144 ms
20,480 KB
testcase_58 AC 722 ms
24,192 KB
testcase_59 AC 851 ms
24,448 KB
testcase_60 AC 398 ms
23,040 KB
testcase_61 AC 757 ms
24,320 KB
testcase_62 AC 740 ms
24,320 KB
testcase_63 AC 137 ms
20,864 KB
testcase_64 AC 433 ms
23,168 KB
testcase_65 AC 369 ms
22,272 KB
testcase_66 AC 348 ms
22,272 KB
testcase_67 AC 580 ms
23,168 KB
testcase_68 AC 410 ms
23,168 KB
testcase_69 AC 218 ms
21,504 KB
testcase_70 AC 245 ms
21,632 KB
testcase_71 AC 242 ms
21,760 KB
testcase_72 AC 485 ms
23,296 KB
testcase_73 AC 814 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 = gets.split.map(&:to_i)
uf = UnionFind.new(N + 1)
memo = Array.new(N + 1)
G = Array.new(N + 1, -1)

M.times do
  l, r, t = gets.chomp.split
  l = l.to_i
  r = r.to_i

  from = uf.find(l)
  to = uf.find(r)

  from.upto(to) do |idx|
    uf.unite(from, idx)

    memo[idx] = t if memo[idx].nil?
  end
end

counter = Hash.new(0)
1.upto(N) do |idx|
  counter[memo[idx]] += 1
end

puts "%d %d %d" % [counter['Y'], counter['K'], counter['C']]
0