結果
問題 | No.1639 最小通信路 |
ユーザー | 箱星 |
提出日時 | 2021-06-25 07:01:13 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,175 bytes |
コンパイル時間 | 11,465 ms |
コンパイル使用メモリ | 438,216 KB |
実行使用メモリ | 92,572 KB |
最終ジャッジ日時 | 2024-09-17 00:55:40 |
合計ジャッジ時間 | 16,448 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 251 ms
57,852 KB |
testcase_01 | AC | 249 ms
92,572 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
import java.io.PrintWriter import java.util.* fun PrintWriter.solve() { val n = nextInt() val graph = Array(n) { mutableListOf<Int>() } while (true) { val a = nextInt() - 1 val b = nextInt() - 1 val c = next() graph[a].add(b) graph[b].add(a) var num = 0 val stack = Stack<Pair<Int, Int>>() stack.push(0 to -1) while (stack.isNotEmpty()) { val (v, p) = stack.pop() num++ for (w in graph[v]) { if (w != p) { stack.push(w to v) } } } if (num == n) { println(c) return } } } 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