結果

問題 No.1473 おでぶなおばけさん
ユーザー 箱星箱星
提出日時 2021-07-03 20:44:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,273 ms / 2,000 ms
コード長 2,601 bytes
コンパイル時間 15,478 ms
コンパイル使用メモリ 451,744 KB
実行使用メモリ 106,612 KB
最終ジャッジ日時 2024-06-30 12:56:37
合計ジャッジ時間 55,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
51,028 KB
testcase_01 AC 298 ms
50,932 KB
testcase_02 AC 1,002 ms
93,876 KB
testcase_03 AC 891 ms
92,760 KB
testcase_04 AC 738 ms
82,288 KB
testcase_05 AC 554 ms
63,608 KB
testcase_06 AC 914 ms
92,808 KB
testcase_07 AC 1,240 ms
106,612 KB
testcase_08 AC 1,273 ms
106,284 KB
testcase_09 AC 1,211 ms
106,372 KB
testcase_10 AC 799 ms
90,240 KB
testcase_11 AC 802 ms
89,992 KB
testcase_12 AC 753 ms
90,260 KB
testcase_13 AC 645 ms
74,756 KB
testcase_14 AC 605 ms
69,444 KB
testcase_15 AC 720 ms
87,680 KB
testcase_16 AC 761 ms
90,064 KB
testcase_17 AC 451 ms
56,568 KB
testcase_18 AC 473 ms
57,848 KB
testcase_19 AC 716 ms
82,276 KB
testcase_20 AC 843 ms
92,668 KB
testcase_21 AC 888 ms
91,556 KB
testcase_22 AC 704 ms
91,552 KB
testcase_23 AC 708 ms
91,948 KB
testcase_24 AC 684 ms
91,476 KB
testcase_25 AC 720 ms
92,336 KB
testcase_26 AC 695 ms
92,304 KB
testcase_27 AC 552 ms
72,540 KB
testcase_28 AC 844 ms
93,532 KB
testcase_29 AC 718 ms
91,836 KB
testcase_30 AC 783 ms
92,020 KB
testcase_31 AC 768 ms
92,584 KB
testcase_32 AC 692 ms
92,484 KB
testcase_33 AC 675 ms
92,316 KB
testcase_34 AC 546 ms
72,112 KB
testcase_35 AC 554 ms
75,100 KB
testcase_36 AC 654 ms
91,264 KB
testcase_37 AC 662 ms
92,460 KB
testcase_38 AC 471 ms
61,256 KB
testcase_39 AC 772 ms
89,844 KB
testcase_40 AC 764 ms
89,992 KB
testcase_41 AC 717 ms
88,180 KB
testcase_42 AC 717 ms
88,544 KB
testcase_43 AC 660 ms
91,564 KB
testcase_44 AC 718 ms
92,844 KB
testcase_45 AC 702 ms
92,804 KB
testcase_46 AC 838 ms
92,892 KB
testcase_47 AC 954 ms
92,560 KB
testcase_48 AC 899 ms
92,624 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)
        if (uf.same(0, n - 1)) {
            for ((s2, t2, d2) in data) {
                if (d2 >= d) {
                    adj[s2].add(t2)
                    adj[t2].add(s2)
                }
            }
            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