結果

問題 No.3 ビットすごろく
ユーザー komkomhkomkomh
提出日時 2019-04-07 10:13:52
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 12,057 ms
コンパイル使用メモリ 438,408 KB
実行使用メモリ 88,104 KB
最終ジャッジ日時 2024-11-20 17:51:22
合計ジャッジ時間 33,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,160 KB
testcase_01 AC 317 ms
50,912 KB
testcase_02 AC 318 ms
50,976 KB
testcase_03 AC 322 ms
51,324 KB
testcase_04 WA -
testcase_05 AC 322 ms
51,588 KB
testcase_06 AC 318 ms
51,344 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 321 ms
51,464 KB
testcase_13 AC 322 ms
51,440 KB
testcase_14 AC 327 ms
51,816 KB
testcase_15 AC 330 ms
52,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 318 ms
51,144 KB
testcase_22 AC 328 ms
51,716 KB
testcase_23 AC 332 ms
52,172 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 312 ms
50,872 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

import kotlin.math.absoluteValue

fun main() {
    val n: Int = readLine()!!.toInt()

    val sugoroku: List<Int> = (1..n).map { getBit(it) }
    var cache: MutableSet<Int> = mutableSetOf()
    fun canReachFromZero(target: Int, deep: Int): Int {
        return when {
            target == 0 -> deep
            cache.contains(target) -> -1
            else -> {
                cache.add(target)
                val fromList: List<Int> = (0 until sugoroku.size).filter { (target - it).absoluteValue == sugoroku[it] }
                fromList.map { canReachFromZero(it, deep + 1) }.find { it != -1 } ?: run { -1 }
            }
        }
    }
    println(canReachFromZero(n - 1, 1))
}

fun getBit(number: Int): Int =
    when (number) {
        0 -> 0
        1 -> 1
        else -> getBit(number / 2) + number % 2
    }
0