結果

問題 No.1473 おでぶなおばけさん
ユーザー 箱星箱星
提出日時 2021-07-03 20:30:51
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 2,469 bytes
コンパイル時間 13,868 ms
コンパイル使用メモリ 444,872 KB
実行使用メモリ 109,492 KB
最終ジャッジ日時 2024-06-30 12:41:02
合計ジャッジ時間 51,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
56,864 KB
testcase_01 AC 297 ms
56,724 KB
testcase_02 AC 940 ms
96,216 KB
testcase_03 AC 854 ms
96,048 KB
testcase_04 AC 705 ms
85,292 KB
testcase_05 AC 539 ms
68,480 KB
testcase_06 AC 851 ms
96,092 KB
testcase_07 AC 1,125 ms
109,124 KB
testcase_08 AC 1,168 ms
109,284 KB
testcase_09 AC 1,130 ms
109,492 KB
testcase_10 AC 743 ms
94,008 KB
testcase_11 AC 749 ms
93,992 KB
testcase_12 AC 712 ms
93,796 KB
testcase_13 AC 621 ms
80,736 KB
testcase_14 AC 570 ms
74,344 KB
testcase_15 AC 677 ms
91,784 KB
testcase_16 AC 730 ms
93,988 KB
testcase_17 AC 436 ms
62,068 KB
testcase_18 AC 460 ms
64,364 KB
testcase_19 AC 656 ms
87,152 KB
testcase_20 AC 794 ms
96,024 KB
testcase_21 AC 779 ms
93,904 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 829 ms
96,196 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 740 ms
93,944 KB
testcase_32 AC 663 ms
95,828 KB
testcase_33 AC 649 ms
95,636 KB
testcase_34 AC 531 ms
76,452 KB
testcase_35 AC 519 ms
80,672 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 736 ms
93,960 KB
testcase_40 AC 716 ms
93,960 KB
testcase_41 AC 675 ms
91,788 KB
testcase_42 AC 706 ms
91,648 KB
testcase_43 AC 694 ms
94,364 KB
testcase_44 AC 700 ms
95,204 KB
testcase_45 AC 714 ms
94,420 KB
testcase_46 AC 818 ms
96,232 KB
testcase_47 AC 906 ms
96,076 KB
testcase_48 AC 886 ms
96,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextInt()
    val data = mutableListOf<Triple<Int, Int, Int>>()
    val adj = Array(n) { mutableListOf<Int>() }
    val uf = UnionFind(n)
    for (i in 0 until m) {
        val s = nextInt() - 1
        val t = nextInt() - 1
        val d = nextInt()
        data.add(Triple(s, t, d))
    }
    data.sortByDescending { it.third }
    for ((s, t, d) in data) {
        uf.unite(s, t)
        adj[s].add(t)
        adj[t].add(s)
        if (uf.same(0, n - 1)) {
            val que: Queue<Pair<Int, Int>> = ArrayDeque()
            que.add(0 to 0)
            val visited = BooleanArray(n) { false }
            visited[0] = true
            while (que.isNotEmpty()) {
                val (v, num) = que.poll()
                if (v == n - 1) {
                    println("$d $num")
                    return
                }
                for (w in adj[v]) {
                    if (!visited[w]) {
                        que.add(w to num + 1)
                        visited[w] = true
                    }
                }
            }
        }
    }
}

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