結果

問題 No.1553 Lovely City
ユーザー yuruhiyayuruhiya
提出日時 2021-07-22 10:55:02
言語 Crystal
(1.11.2)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 11,688 ms
コンパイル使用メモリ 296,604 KB
実行使用メモリ 50,584 KB
最終ジャッジ日時 2024-07-17 14:37:42
合計ジャッジ時間 21,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 103 ms
36,172 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 164 ms
32,072 KB
testcase_09 AC 182 ms
32,492 KB
testcase_10 AC 219 ms
39,496 KB
testcase_11 AC 138 ms
29,004 KB
testcase_12 AC 227 ms
42,548 KB
testcase_13 AC 148 ms
28,268 KB
testcase_14 AC 171 ms
31,340 KB
testcase_15 AC 162 ms
31,936 KB
testcase_16 AC 193 ms
34,292 KB
testcase_17 AC 156 ms
34,004 KB
testcase_18 AC 284 ms
49,464 KB
testcase_19 AC 295 ms
49,684 KB
testcase_20 AC 284 ms
50,152 KB
testcase_21 AC 282 ms
50,356 KB
testcase_22 AC 292 ms
50,232 KB
testcase_23 AC 301 ms
49,344 KB
testcase_24 AC 293 ms
49,380 KB
testcase_25 AC 284 ms
49,340 KB
testcase_26 AC 288 ms
50,584 KB
testcase_27 AC 290 ms
48,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DSU
  def initialize(n)
    @d = Array(Int32).new(n, -1)
  end

  def root(x)
    @d[x] < 0 ? x : (@d[x] = root(@d[x]))
  end

  def unite(x, y)
    x = root(x)
    y = root(y)
    return false if x == y
    x, y = y, x if @d[x] > @d[y]
    @d[x] += @d[y]
    @d[y] = x
    true
  end

  def groups
    groups = Hash(Int32, Array(Int32)).new { |h, k| h[k] = [] of Int32 }
    @d.size.times { |i| groups[root(i)] << i }
    groups.values
  end
end

def solve(g, deg, group)
  a = group.select { |i| deg[i] == 0 }
  i = 0
  while i < a.size
    g[a[i]].each { |u| a << u if (deg[u] -= 1) == 0 }
    i += 1
  end
  if group.any? { |i| deg[i] > 0 }
    a = group + [group[0]]
  end
  a.each_cons(2).to_a
end

n, m = read_line.split.map(&.to_i)
g = Array.new(n) { [] of Int32 }
deg = [0] * n
dsu = DSU.new(n)
m.times do
  u, v = read_line.split.map(&.to_i.pred)
  g[u] << v
  deg[v] += 1
  dsu.unite(u, v)
end
ans = dsu.groups.flat_map { |group| solve(g, deg, group) }
puts ans.size, ans.join('\n', &.join ' ', &.succ)
0