結果

問題 No.1390 Get together
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:12:11
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 1,100 ms / 2,000 ms
コード長 1,361 bytes
コンパイル時間 16,428 ms
コンパイル使用メモリ 454,160 KB
実行使用メモリ 108,572 KB
最終ジャッジ日時 2024-07-19 22:14:10
合計ジャッジ時間 39,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.collections.*
import kotlin.math.*

@kotlin.ExperimentalStdlibApi
fun main() {
    val (n, m) = readLine()!!.split(" ").map { it.toInt() }
    val uni = UnionFind(m)

    val c2b = mutableMapOf<Int, Int>()
    var ans = 0
    for (i in 0 until n) {
        val (b, c) = readLine()!!.split(" ").map { it.toInt() }
        val box = c2b.get(c)

        when (box) {
            null -> c2b[c] = b
            else -> {
                if (!uni.merge(box, b)) continue
                ans++
                c2b[c] = uni.root(b)
            }
        }
    }

    println(ans)
}

data class UnionFind(private val n : Int) {
    private data class node(var parent : Int? = null, var size : Int = 1)
    private val nodes = Array(n+1) { node() }

    fun root(x : Int): Int {
        return when(nodes[x].parent) {
            null -> x
            else -> { nodes[x].parent = root(nodes[x].parent!!); nodes[x].parent!! }
        }
    }

    fun merge(x : Int, y : Int) : Boolean{
        var rx = root(x); var ry = root(y)
        if (rx == ry) return false
        if (nodes[rx].size < nodes[ry].size) rx = ry.also { ry = rx }
        nodes[ry].parent = rx; nodes[rx].size += nodes[ry].size
        return true
    }
    fun isSame(x : Int, y : Int) : Boolean { return root(x) == root(y) }
    fun size(x : Int) : Int { return nodes[root(x)].size }
}
0