結果

問題 No.3 ビットすごろく
ユーザー komkomhkomkomh
提出日時 2019-04-14 22:10:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 389 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 12,778 ms
コンパイル使用メモリ 442,052 KB
実行使用メモリ 63,032 KB
最終ジャッジ日時 2024-07-01 09:19:04
合計ジャッジ時間 26,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
60,424 KB
testcase_01 AC 333 ms
60,476 KB
testcase_02 AC 329 ms
60,276 KB
testcase_03 AC 358 ms
60,472 KB
testcase_04 AC 339 ms
60,516 KB
testcase_05 AC 371 ms
60,792 KB
testcase_06 AC 354 ms
60,572 KB
testcase_07 AC 341 ms
60,320 KB
testcase_08 AC 372 ms
60,564 KB
testcase_09 AC 375 ms
60,620 KB
testcase_10 AC 381 ms
62,980 KB
testcase_11 AC 380 ms
60,532 KB
testcase_12 AC 376 ms
60,684 KB
testcase_13 AC 350 ms
60,612 KB
testcase_14 AC 379 ms
62,972 KB
testcase_15 AC 381 ms
62,952 KB
testcase_16 AC 379 ms
62,828 KB
testcase_17 AC 389 ms
62,884 KB
testcase_18 AC 348 ms
60,364 KB
testcase_19 AC 383 ms
62,804 KB
testcase_20 AC 349 ms
60,288 KB
testcase_21 AC 338 ms
60,316 KB
testcase_22 AC 381 ms
62,884 KB
testcase_23 AC 380 ms
63,032 KB
testcase_24 AC 384 ms
62,968 KB
testcase_25 AC 386 ms
63,032 KB
testcase_26 AC 333 ms
60,428 KB
testcase_27 AC 354 ms
60,456 KB
testcase_28 AC 382 ms
62,820 KB
testcase_29 AC 378 ms
62,936 KB
testcase_30 AC 341 ms
60,316 KB
testcase_31 AC 337 ms
60,352 KB
testcase_32 AC 375 ms
60,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n: Int = readLine()!!.toInt()
    val sugoroku: List<Int> = (1..n).map { getBit2(it) }
    val queue: MutableList<Pair<Int, Int>> = mutableListOf(Pair(0, 0))
    val cache: MutableSet<Int> = mutableSetOf(0)

    while (queue.isNotEmpty()) {
        val pair = queue.removeAt(0)
        if (pair.first == n - 1) {
            println(pair.second + 1)
            return
        }

        val plusIndex = pair.first + sugoroku[pair.first]
        if (plusIndex < n && cache.add(plusIndex)) {
            queue.add(Pair(plusIndex, pair.second + 1))
        }

        val minusIndex = pair.first - sugoroku[pair.first]
        if (minusIndex > 0 && cache.add(minusIndex)) {
            queue.add(Pair(minusIndex, pair.second + 1))
        }
    }
    println(-1)
}

fun getBit2(number: Int): Int = Integer.toString(number, 2).count { num -> num == '1' }
0