結果

問題 No.994 ばらばらコイン
ユーザー polylogKpolylogK
提出日時 2020-02-21 22:41:18
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 13,371 ms
コンパイル使用メモリ 446,524 KB
実行使用メモリ 95,612 KB
最終ジャッジ日時 2024-10-08 22:16:32
合計ジャッジ時間 27,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 806 ms
93,568 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 645 ms
91,740 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 267 ms
51,644 KB
testcase_17 AC 287 ms
55,084 KB
testcase_18 AC 268 ms
51,692 KB
testcase_19 AC 279 ms
54,804 KB
testcase_20 AC 273 ms
51,564 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
	val (n, k) = readLine()!!.split(" ").map(String::toInt)
	var a = Array(n, { 0 })
	var b = Array(n, { 0 })
	var g = Array<MutableList<Int>>(n, { mutableListOf() })

	for (i in 0 until n - 1) {
		val (x, y) = readLine()!!.split(" ").map(String::toInt)
		a[i] = x - 1
		b[i] = y - 1
		g[a[i]].add(i)
		g[b[i]].add(i)
	}

	if (n < k) {
		println(-1)
		return
	}
	
	var dist = Array(n, { if (it == 0) { 0L } else { -1L }})
	fun solve(now: Int, depth: Long) {
		dist[now] = depth
		for (id in g[now]) {
			val to = a[id] xor b[id] xor now
			if (dist[to] != -1L) continue

			solve(to, depth + 1)
		}
	}
	solve(0, 0)
	dist.sort()

	var ans: Long = 0
	for (i in 0 until k) ans += dist[i]
	println(ans)
}
0