結果

問題 No.3 ビットすごろく
ユーザー rutilicusrutilicus
提出日時 2020-08-30 22:22:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 363 ms / 5,000 ms
コード長 879 bytes
コンパイル時間 13,467 ms
コンパイル使用メモリ 439,856 KB
実行使用メモリ 57,716 KB
最終ジャッジ日時 2024-07-01 09:55:16
合計ジャッジ時間 24,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
56,744 KB
testcase_01 AC 301 ms
56,848 KB
testcase_02 AC 300 ms
56,800 KB
testcase_03 AC 308 ms
56,728 KB
testcase_04 AC 309 ms
56,744 KB
testcase_05 AC 320 ms
57,028 KB
testcase_06 AC 315 ms
56,944 KB
testcase_07 AC 305 ms
56,756 KB
testcase_08 AC 315 ms
56,992 KB
testcase_09 AC 332 ms
57,164 KB
testcase_10 AC 340 ms
57,056 KB
testcase_11 AC 333 ms
56,976 KB
testcase_12 AC 334 ms
56,992 KB
testcase_13 AC 309 ms
56,828 KB
testcase_14 AC 336 ms
57,004 KB
testcase_15 AC 358 ms
57,548 KB
testcase_16 AC 352 ms
57,612 KB
testcase_17 AC 353 ms
57,716 KB
testcase_18 AC 314 ms
56,948 KB
testcase_19 AC 360 ms
57,620 KB
testcase_20 AC 311 ms
56,988 KB
testcase_21 AC 314 ms
56,676 KB
testcase_22 AC 337 ms
57,052 KB
testcase_23 AC 360 ms
57,660 KB
testcase_24 AC 363 ms
57,556 KB
testcase_25 AC 358 ms
57,596 KB
testcase_26 AC 309 ms
56,772 KB
testcase_27 AC 316 ms
56,936 KB
testcase_28 AC 335 ms
57,124 KB
testcase_29 AC 333 ms
56,956 KB
testcase_30 AC 304 ms
56,708 KB
testcase_31 AC 305 ms
56,820 KB
testcase_32 AC 328 ms
56,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:29: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(if (dp[n] == Int.MAX_VALUE) -1 else dp[n])
            ^

ソースコード

diff #

import java.util.ArrayDeque

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val queue = ArrayDeque<Int>()

    val dp = IntArray(n + 1) { Int.MAX_VALUE }

    dp[1] = 1
    queue.add(1)

    while (queue.isNotEmpty()) {
        val current = queue.poll()
        val bitCnt = current.toString(2).count { it == '1' }

        if (current - bitCnt > 0 && dp[current - bitCnt] > dp[current] + 1) {
            dp[current - bitCnt] = dp[current] + 1
            queue.add(current - bitCnt)
        }
        if (current + bitCnt <= n && dp[current + bitCnt] > dp[current] + 1) {
            dp[current + bitCnt] = dp[current] + 1
            queue.add(current + bitCnt)
        }
    }

    builder.appendln(if (dp[n] == Int.MAX_VALUE) -1 else dp[n])

    print(builder.toString())
}

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