結果

問題 No.1265 Balloon Survival
ユーザー rutilicusrutilicus
提出日時 2020-10-24 08:57:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 13,596 ms
コンパイル使用メモリ 443,196 KB
実行使用メモリ 108,164 KB
最終ジャッジ日時 2024-07-21 14:57:54
合計ジャッジ時間 35,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
57,108 KB
testcase_01 AC 318 ms
56,956 KB
testcase_02 AC 315 ms
57,076 KB
testcase_03 AC 316 ms
57,000 KB
testcase_04 AC 323 ms
56,872 KB
testcase_05 AC 326 ms
57,136 KB
testcase_06 AC 322 ms
56,956 KB
testcase_07 AC 321 ms
56,980 KB
testcase_08 AC 322 ms
56,988 KB
testcase_09 AC 319 ms
57,100 KB
testcase_10 AC 321 ms
57,120 KB
testcase_11 AC 327 ms
57,168 KB
testcase_12 AC 327 ms
56,992 KB
testcase_13 AC 322 ms
57,108 KB
testcase_14 AC 476 ms
61,904 KB
testcase_15 AC 448 ms
61,640 KB
testcase_16 AC 406 ms
59,564 KB
testcase_17 AC 716 ms
82,624 KB
testcase_18 AC 421 ms
59,316 KB
testcase_19 AC 413 ms
59,424 KB
testcase_20 AC 482 ms
61,872 KB
testcase_21 AC 547 ms
68,204 KB
testcase_22 AC 505 ms
63,908 KB
testcase_23 AC 507 ms
66,188 KB
testcase_24 AC 1,069 ms
108,028 KB
testcase_25 AC 1,010 ms
108,160 KB
testcase_26 AC 1,042 ms
107,952 KB
testcase_27 AC 1,063 ms
108,140 KB
testcase_28 AC 1,095 ms
108,004 KB
testcase_29 AC 1,049 ms
107,984 KB
testcase_30 AC 1,078 ms
108,132 KB
testcase_31 AC 1,105 ms
107,988 KB
testcase_32 AC 1,054 ms
108,084 KB
testcase_33 AC 1,073 ms
108,164 KB
testcase_34 AC 327 ms
57,136 KB
testcase_35 AC 310 ms
56,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:42:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

import java.util.*

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val balloon = Array(n) {
        val (x, y) = readInputLine().split(" ").map { it.toLong() }
        Pair(x, y)
    }

    val queue = PriorityQueue<Triple<Int, Int, Long>> { x, y -> x.third.compareTo(y.third) }

    for (i in 0 until n) {
        for (j in i + 1 until n) {
            val x = balloon[i].first - balloon[j].first
            val y = balloon[i].second - balloon[j].second
            queue.add(Triple(i, j, x * x + y * y))
        }
    }

    var ans = 0
    val removed = BooleanArray(n)

    while (queue.isNotEmpty()) {
        val (x, y, _) = queue.poll()!!

        if (removed[x] || removed[y]) {
            continue
        }

        if (x == 0 && !removed[y]) {
            ans++
        }
        if (x != 0) {
            removed[x] = true
        }
        removed[y] = true
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0