結果

問題 No.826 連絡網
ユーザー te-shte-sh
提出日時 2021-07-03 16:01:09
言語 Crystal
(1.11.2)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 2,568 bytes
コンパイル時間 13,794 ms
コンパイル使用メモリ 294,568 KB
実行使用メモリ 11,996 KB
最終ジャッジ日時 2024-06-30 08:17:56
合計ジャッジ時間 15,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 50 ms
9,344 KB
testcase_13 AC 19 ms
5,376 KB
testcase_14 AC 36 ms
7,680 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 25 ms
6,016 KB
testcase_17 AC 20 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 63 ms
10,368 KB
testcase_20 AC 55 ms
9,344 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 20 ms
5,504 KB
testcase_23 AC 25 ms
6,144 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 72 ms
11,996 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 52 ms
9,472 KB
testcase_28 AC 39 ms
7,936 KB
testcase_29 AC 20 ms
5,376 KB
testcase_30 AC 73 ms
11,992 KB
testcase_31 AC 23 ms
5,888 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