結果

問題 No.2290 UnUnion Find
ユーザー 箱星箱星
提出日時 2023-03-06 00:04:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 2,190 bytes
コンパイル時間 14,013 ms
コンパイル使用メモリ 447,180 KB
実行使用メモリ 98,180 KB
最終ジャッジ日時 2024-09-22 23:35:16
合計ジャッジ時間 52,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
58,428 KB
testcase_01 AC 297 ms
58,468 KB
testcase_02 AC 622 ms
90,324 KB
testcase_03 AC 703 ms
95,676 KB
testcase_04 AC 706 ms
94,504 KB
testcase_05 AC 710 ms
96,668 KB
testcase_06 AC 708 ms
93,740 KB
testcase_07 AC 707 ms
94,556 KB
testcase_08 AC 718 ms
93,872 KB
testcase_09 AC 717 ms
94,676 KB
testcase_10 AC 694 ms
92,956 KB
testcase_11 AC 715 ms
95,284 KB
testcase_12 AC 704 ms
92,752 KB
testcase_13 AC 741 ms
98,180 KB
testcase_14 AC 703 ms
93,340 KB
testcase_15 AC 710 ms
96,532 KB
testcase_16 AC 703 ms
92,720 KB
testcase_17 AC 708 ms
93,432 KB
testcase_18 AC 709 ms
94,636 KB
testcase_19 AC 708 ms
92,736 KB
testcase_20 AC 709 ms
92,832 KB
testcase_21 AC 650 ms
90,560 KB
testcase_22 AC 682 ms
90,708 KB
testcase_23 AC 683 ms
90,808 KB
testcase_24 AC 700 ms
92,868 KB
testcase_25 AC 697 ms
90,552 KB
testcase_26 AC 688 ms
92,520 KB
testcase_27 AC 705 ms
92,552 KB
testcase_28 AC 694 ms
90,724 KB
testcase_29 AC 701 ms
92,676 KB
testcase_30 AC 679 ms
90,640 KB
testcase_31 AC 705 ms
92,768 KB
testcase_32 AC 681 ms
90,792 KB
testcase_33 AC 678 ms
90,548 KB
testcase_34 AC 710 ms
92,688 KB
testcase_35 AC 716 ms
92,712 KB
testcase_36 AC 679 ms
90,616 KB
testcase_37 AC 685 ms
90,796 KB
testcase_38 AC 683 ms
90,576 KB
testcase_39 AC 705 ms
90,708 KB
testcase_40 AC 704 ms
92,752 KB
testcase_41 AC 700 ms
90,916 KB
testcase_42 AC 718 ms
92,832 KB
testcase_43 AC 692 ms
92,568 KB
testcase_44 AC 712 ms
96,624 KB
testcase_45 AC 657 ms
92,420 KB
testcase_46 AC 680 ms
92,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val q = nextInt()
    var min = 0
    var max = n - 1
    val uf = UnionFind(n)
    for (i in 0 until q) {
        val t = nextInt()
        if (t == 1) {
            val u = nextInt() - 1
            val v = nextInt() - 1
            uf.unite(u, v)
            while (max != uf.find(max)) max--
            while (min != uf.find(min)) min++
        } else {
            val v = nextInt() - 1
            if (!uf.same(v, min)) {
                println(min + 1)
            } else if (!uf.same(v, max)) {
                println(max + 1)
            } else {
                println(-1)
            }
        }
    }
}

class UnionFind(n: Int) {
    private val rank = IntArray(n) { 0 }
    private val parent = IntArray(n) { -1 }

    fun find(x: Int): Int {
        if (parent[x] < 0) {
            return x
        }
        parent[x] = find(parent[x])
        return parent[x]
    }

    fun unite(x: Int, y: Int) {
        val x1 = find(x)
        val y1 = find(y)
        if (x1 == y1) {
            return
        }
        if (rank[x1] < rank[y1]) {
            parent[y1] += parent[x1]
            parent[x1] = y1
        } else {
            parent[x1] += parent[y1]
            parent[y1] = x1
            if (rank[x1] == rank[y1]) {
                rank[x1]++
            }
        }
    }

    fun same(x: Int, y: Int) = find(x) == find(y)

    fun size(x: Int) = -parent[find(x)]
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0