結果

問題 No.994 ばらばらコイン
ユーザー polylogKpolylogK
提出日時 2020-02-21 22:39:27
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 18,293 ms
コンパイル使用メモリ 441,412 KB
実行使用メモリ 95,380 KB
最終ジャッジ日時 2024-10-08 22:09:31
合計ジャッジ時間 27,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 663 ms
93,808 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 640 ms
91,836 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 301 ms
51,744 KB
testcase_17 AC 312 ms
54,728 KB
testcase_18 AC 295 ms
51,584 KB
testcase_19 AC 309 ms
54,720 KB
testcase_20 AC 300 ms
51,436 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