結果

問題 No.1639 最小通信路
ユーザー 箱星箱星
提出日時 2021-06-25 00:21:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 1,659 bytes
コンパイル時間 14,535 ms
コンパイル使用メモリ 438,992 KB
実行使用メモリ 56,980 KB
最終ジャッジ日時 2024-09-17 00:54:38
合計ジャッジ時間 28,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
54,480 KB
testcase_01 AC 282 ms
54,236 KB
testcase_02 AC 298 ms
54,316 KB
testcase_03 AC 295 ms
54,436 KB
testcase_04 AC 394 ms
56,980 KB
testcase_05 AC 287 ms
54,244 KB
testcase_06 AC 293 ms
54,408 KB
testcase_07 AC 285 ms
54,268 KB
testcase_08 AC 302 ms
54,352 KB
testcase_09 AC 290 ms
54,288 KB
testcase_10 AC 290 ms
54,340 KB
testcase_11 AC 295 ms
54,456 KB
testcase_12 AC 293 ms
54,400 KB
testcase_13 AC 295 ms
54,328 KB
testcase_14 AC 283 ms
54,460 KB
testcase_15 AC 286 ms
54,344 KB
testcase_16 AC 293 ms
54,280 KB
testcase_17 AC 296 ms
54,376 KB
testcase_18 AC 282 ms
54,364 KB
testcase_19 AC 289 ms
54,248 KB
testcase_20 AC 297 ms
54,368 KB
testcase_21 AC 285 ms
54,256 KB
testcase_22 AC 286 ms
54,336 KB
testcase_23 AC 291 ms
54,256 KB
testcase_24 AC 290 ms
54,228 KB
testcase_25 AC 290 ms
54,356 KB
testcase_26 AC 288 ms
54,456 KB
testcase_27 AC 282 ms
54,376 KB
testcase_28 AC 287 ms
54,360 KB
testcase_29 AC 288 ms
54,332 KB
testcase_30 AC 295 ms
54,376 KB
testcase_31 AC 286 ms
54,344 KB
testcase_32 AC 290 ms
54,452 KB
testcase_33 AC 287 ms
54,260 KB
testcase_34 AC 292 ms
54,256 KB
testcase_35 AC 304 ms
54,292 KB
testcase_36 AC 297 ms
54,432 KB
testcase_37 AC 290 ms
54,308 KB
testcase_38 AC 283 ms
54,268 KB
testcase_39 AC 287 ms
54,460 KB
testcase_40 AC 283 ms
54,308 KB
testcase_41 AC 286 ms
54,292 KB
testcase_42 AC 293 ms
54,328 KB
testcase_43 AC 286 ms
54,284 KB
testcase_44 AC 285 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve() {
    val n = nextInt()
    val uf = UnionFind(n)
    for (i in 0 until n * (n - 1) / 2) {
        val a = nextInt() - 1
        val b = nextInt() - 1
        val c = next()
        uf.unite(a, b)
        if (uf.size(0) == n) {
            println(c)
            return
        }
    }
}

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): Boolean {
        return find(x) == find(y)
    }

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

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// 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