結果

問題 No.1639 最小通信路
ユーザー 箱星箱星
提出日時 2021-06-25 00:18:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 1,795 bytes
コンパイル時間 12,955 ms
コンパイル使用メモリ 434,816 KB
実行使用メモリ 56,876 KB
最終ジャッジ日時 2024-09-17 00:55:13
合計ジャッジ時間 27,957 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
54,436 KB
testcase_01 AC 285 ms
54,360 KB
testcase_02 AC 302 ms
54,452 KB
testcase_03 AC 304 ms
54,420 KB
testcase_04 AC 394 ms
56,876 KB
testcase_05 AC 285 ms
54,304 KB
testcase_06 AC 295 ms
54,312 KB
testcase_07 AC 280 ms
54,280 KB
testcase_08 AC 320 ms
55,356 KB
testcase_09 AC 284 ms
54,312 KB
testcase_10 AC 286 ms
54,368 KB
testcase_11 AC 287 ms
54,380 KB
testcase_12 AC 293 ms
54,440 KB
testcase_13 AC 296 ms
54,436 KB
testcase_14 AC 284 ms
54,296 KB
testcase_15 AC 292 ms
54,312 KB
testcase_16 AC 320 ms
55,372 KB
testcase_17 AC 304 ms
54,420 KB
testcase_18 AC 287 ms
54,472 KB
testcase_19 AC 295 ms
54,216 KB
testcase_20 AC 308 ms
54,452 KB
testcase_21 AC 283 ms
54,172 KB
testcase_22 AC 289 ms
54,352 KB
testcase_23 AC 295 ms
54,400 KB
testcase_24 AC 287 ms
54,396 KB
testcase_25 AC 291 ms
54,396 KB
testcase_26 AC 283 ms
54,408 KB
testcase_27 AC 283 ms
54,252 KB
testcase_28 AC 282 ms
54,240 KB
testcase_29 AC 288 ms
54,324 KB
testcase_30 AC 300 ms
54,436 KB
testcase_31 AC 285 ms
54,396 KB
testcase_32 AC 297 ms
54,316 KB
testcase_33 AC 286 ms
54,260 KB
testcase_34 AC 295 ms
54,460 KB
testcase_35 AC 337 ms
55,240 KB
testcase_36 AC 297 ms
54,380 KB
testcase_37 AC 300 ms
54,532 KB
testcase_38 AC 285 ms
54,212 KB
testcase_39 AC 288 ms
54,404 KB
testcase_40 AC 286 ms
54,428 KB
testcase_41 AC 287 ms
54,300 KB
testcase_42 AC 295 ms
54,344 KB
testcase_43 AC 285 ms
54,248 KB
testcase_44 AC 285 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val uf = UnionFind(n)
    loop@for (i in 0 until n * (n - 1) / 2) {
        val a = nextInt() - 1
        val b = nextInt() - 1
        val c = next()
        uf.unite(a, b)
        for (j in 0 until n) {
            for (k in 0 until j) {
                if (!uf.same(j, k)) {
                    continue@loop
                }
            }
        }
        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