結果

問題 No.3 ビットすごろく
ユーザー Pump0129Pump0129
提出日時 2018-03-30 07:15:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 414 ms / 5,000 ms
コード長 1,105 bytes
コンパイル時間 11,917 ms
コンパイル使用メモリ 427,496 KB
実行使用メモリ 56,172 KB
最終ジャッジ日時 2024-07-01 09:00:02
合計ジャッジ時間 24,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
52,968 KB
testcase_01 AC 302 ms
54,448 KB
testcase_02 AC 303 ms
50,656 KB
testcase_03 AC 322 ms
51,320 KB
testcase_04 AC 304 ms
50,768 KB
testcase_05 AC 336 ms
51,728 KB
testcase_06 AC 324 ms
51,336 KB
testcase_07 AC 319 ms
51,044 KB
testcase_08 AC 335 ms
51,184 KB
testcase_09 AC 346 ms
52,076 KB
testcase_10 AC 353 ms
52,148 KB
testcase_11 AC 344 ms
51,824 KB
testcase_12 AC 336 ms
51,696 KB
testcase_13 AC 319 ms
50,936 KB
testcase_14 AC 356 ms
52,008 KB
testcase_15 AC 403 ms
56,172 KB
testcase_16 AC 412 ms
55,908 KB
testcase_17 AC 408 ms
56,092 KB
testcase_18 AC 320 ms
51,024 KB
testcase_19 AC 407 ms
56,116 KB
testcase_20 AC 308 ms
50,816 KB
testcase_21 AC 300 ms
50,644 KB
testcase_22 AC 350 ms
52,116 KB
testcase_23 AC 413 ms
56,084 KB
testcase_24 AC 414 ms
55,588 KB
testcase_25 AC 412 ms
55,860 KB
testcase_26 AC 305 ms
50,792 KB
testcase_27 AC 325 ms
51,184 KB
testcase_28 AC 358 ms
52,388 KB
testcase_29 AC 348 ms
51,812 KB
testcase_30 AC 307 ms
50,856 KB
testcase_31 AC 309 ms
50,692 KB
testcase_32 AC 348 ms
51,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

// 幅優先探索
fun main(args: Array<String>) {
    val len = readLine()!!.toInt()
    val queue = mutableListOf(1)
    // ループ回避用
    val isPass = Array(len, {false})
    // カウント用
    val countList = mutableListOf(1)
    isPass[0] = true


    while (queue.size != 0) {
        val np = queue[0]
        queue.removeAt(0)
        val count = countList[0]
        countList.removeAt(0)

        if (np == len) {
            println(count)
            return
        }

        val vp = Integer.toBinaryString(np).filter { s -> s == '1' }.length

        if (np + vp <= len) {
            if (!isPass[np + vp - 1]) {
                queue.add(np + vp)
                countList.add(count + 1)
                isPass[np + vp - 1] = true
            }
        }

        if (0 < np - vp) {
            if (!isPass[np - vp - 1]) {
                queue.add(np - vp)
                countList.add(count + 1)
                isPass[np - vp - 1] = true
            }
        }
    }

    println("-1")
}
0