結果

問題 No.1059 素敵な集合
ユーザー yakamotoyakamoto
提出日時 2020-05-22 23:10:21
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 3,597 bytes
コンパイル時間 19,710 ms
コンパイル使用メモリ 431,432 KB
実行使用メモリ 55,212 KB
最終ジャッジ日時 2023-09-30 15:33:49
合計ジャッジ時間 27,420 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
50,276 KB
testcase_01 AC 354 ms
55,012 KB
testcase_02 AC 342 ms
53,084 KB
testcase_03 AC 278 ms
50,324 KB
testcase_04 AC 275 ms
50,460 KB
testcase_05 AC 274 ms
50,384 KB
testcase_06 AC 320 ms
52,900 KB
testcase_07 AC 323 ms
52,896 KB
testcase_08 AC 332 ms
52,560 KB
testcase_09 AC 299 ms
52,280 KB
testcase_10 AC 316 ms
52,548 KB
testcase_11 AC 341 ms
52,984 KB
testcase_12 AC 311 ms
52,556 KB
testcase_13 AC 323 ms
52,668 KB
testcase_14 AC 279 ms
50,428 KB
testcase_15 AC 333 ms
52,620 KB
testcase_16 AC 316 ms
52,508 KB
testcase_17 AC 327 ms
52,720 KB
testcase_18 AC 300 ms
54,584 KB
testcase_19 AC 343 ms
54,888 KB
testcase_20 AC 354 ms
55,212 KB
testcase_21 AC 342 ms
54,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L

class UnionFind(n: Int) {
  private val par = IntArray(n){it}
  val rank = IntArray(n){1} // 集合の要素数
  private val visits = IntArray(n) // 訪れた場所をfind毎に用意するのがもったいないのでつかいまわす

  fun find(x: Int): Int {
    var ptr = 0
    var i = x
    while(par[i] != i) {
      visits[ptr++] = i
      i = par[i]
    }

    for (j in 0 until ptr) {
      par[visits[j]] = i
    }
    return i
  }

  private fun merge(node: Int, rt: Int): Int {
    par[node] = rt
    rank[rt] += rank[node]
    return rt
  }

  fun unite(x: Int, y: Int): Boolean {
    val x1 = find(x)
    val y1 = find(y)
    return if (x1 == y1) false
    else {
      if (rank[x1] < rank[y1])
        merge(x1, y1)
      else
        merge(y1, x1)

      true
    }
  }

  fun isRoot(x: Int) = par[x] == x

  /**
   * xを解決する必要がないときは直にrankをみる
   */
  fun cntNodes(x: Int): Int = rank[find(x)]
}
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val L = ni()
    val R = ni()
    val uf = UnionFind(R + 1)
    for (i in L..R) {
      var j = i * 2
      while (j <= R) {
        uf.unite(i, j)
        j += i
      }
    }
    var ans = 0
    for (i in L..R) {
      if (uf.isRoot(i)) ans++
    }
    out.println(ans - 1)
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0