結果

問題 No.826 連絡網
ユーザー te-shte-sh
提出日時 2021-07-03 16:01:09
言語 Crystal
(1.11.2)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 2,568 bytes
コンパイル時間 20,133 ms
コンパイル使用メモリ 252,356 KB
実行使用メモリ 14,500 KB
最終ジャッジ日時 2023-09-12 20:41:42
合計ジャッジ時間 19,895 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 2 ms
4,420 KB
testcase_03 AC 3 ms
4,528 KB
testcase_04 AC 3 ms
4,480 KB
testcase_05 AC 3 ms
4,416 KB
testcase_06 AC 3 ms
4,380 KB
testcase_07 AC 3 ms
4,460 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,424 KB
testcase_10 AC 2 ms
4,440 KB
testcase_11 AC 3 ms
4,452 KB
testcase_12 AC 48 ms
11,180 KB
testcase_13 AC 20 ms
7,040 KB
testcase_14 AC 36 ms
9,584 KB
testcase_15 AC 6 ms
4,968 KB
testcase_16 AC 25 ms
7,796 KB
testcase_17 AC 21 ms
7,012 KB
testcase_18 AC 16 ms
6,536 KB
testcase_19 AC 57 ms
12,268 KB
testcase_20 AC 56 ms
11,248 KB
testcase_21 AC 3 ms
4,604 KB
testcase_22 AC 20 ms
7,244 KB
testcase_23 AC 27 ms
7,972 KB
testcase_24 AC 12 ms
6,012 KB
testcase_25 AC 70 ms
14,500 KB
testcase_26 AC 14 ms
6,360 KB
testcase_27 AC 49 ms
11,308 KB
testcase_28 AC 38 ms
9,780 KB
testcase_29 AC 20 ms
7,056 KB
testcase_30 AC 71 ms
13,640 KB
testcase_31 AC 24 ms
7,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require "bit_array"

def main(io)
  n, p = io.get2

  uf = UnionFind.new(n+1)
  b = BitArray.new(n+1)

  (2..n).each do |i|
    next if b[i]
    j = i*2
    while j <= n
      b[j] = true
      uf.unite(i, j)
      j += i
    end
  end

  io.put uf.count_nodes_of(p)
end

class UnionFind
  def initialize(@n : Int32)
    @s = @n
    @p = Array(Int32).new(@n, @s)
    @cf = @n
    @cn = Array(Int32).new(@n, 1)
  end

  def unite(u : Int, v : Int)
    pu, pv = subst(u), subst(v)
    if pu != pv
      @p[pv] = pu
      @cf -= 1
      @cn[pu] += @cn[pv]
    end
    pu != pv
  end

  def subst(u : Int) : Int32
    @p[u] == @s ? u.to_i32 : (@p[u] = subst(@p[u]))
  end

  def same?(u : Int, v : Int)
    subst(u) == subst(v)
  end

  def count_forests
    @cf
  end

  def count_nodes_of(u : Int)
    @cn[subst(u)]
  end
end

class ProconIO
  def initialize
    @buf = [] of String
    @index = 0
  end

  def get(k : T.class = Int32) forall T
    get_v(k)
  end

  def get(*ks : T.class) forall T
    ks.map { |k| get_v(k) }
  end

  macro define_getn
    {% for i in (2..9) %}
      def get{{i}}(k : T.class = Int32) forall T
        get({% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_getn

  def get_a(n : Int, k : T.class = Int32) forall T
    Array.new(n) { get_v(k) }
  end

  def get_c(n : Int, k : T.class = Int32) forall T
    get_a(n, k)
  end

  def get_c(n : Int, *ks : T.class) forall T
    a = Array.new(n) { get(*ks) }
    ks.map_with_index { |_, i| a.map { |e| e[i] } }
  end

  macro define_getn_c
    {% for i in (2..9) %}
      def get{{i}}_c(n : Int, k : T.class = Int32) forall T
        get_c(n, {% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_getn_c

  def get_m(r : Int, c : Int, k : T.class = Int32) forall T
    Array.new(r) { get_a(c, k) }
  end

  def put(*vs)
    vs.each.with_index do |v, i|
      put_v(v)
      print i < vs.size - 1 ? " " : "\n"
    end
  end

  def put_e(*vs)
    put(*vs)
    exit
  end


  private def get_v(k : Int32.class); get_token.to_i32; end
  private def get_v(k : Int64.class); get_token.to_i64; end
  private def get_v(k : String.class); get_token; end

  private def get_token
    if @buf.size == @index
      @buf = read_line.split
      @index = 0
    end
    v = @buf[@index]
    @index += 1
    v
  end

  private def put_v(vs : Enumerable)
    vs.each_with_index do |v, i|
      print v
      print " " if i < vs.size - 1
    end
  end

  private def put_v(v)
    print v
  end
end

main(ProconIO.new)
0