結果

問題 No.3 ビットすごろく
ユーザー mnrnmnrn
提出日時 2017-06-12 01:07:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 378 ms / 5,000 ms
コード長 988 bytes
コンパイル時間 14,101 ms
コンパイル使用メモリ 448,500 KB
実行使用メモリ 52,628 KB
最終ジャッジ日時 2024-07-01 08:45:41
合計ジャッジ時間 26,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
51,012 KB
testcase_01 AC 342 ms
51,292 KB
testcase_02 AC 346 ms
51,312 KB
testcase_03 AC 349 ms
51,520 KB
testcase_04 AC 357 ms
51,320 KB
testcase_05 AC 356 ms
51,984 KB
testcase_06 AC 350 ms
51,588 KB
testcase_07 AC 353 ms
51,544 KB
testcase_08 AC 354 ms
51,876 KB
testcase_09 AC 364 ms
52,212 KB
testcase_10 AC 362 ms
52,332 KB
testcase_11 AC 357 ms
51,992 KB
testcase_12 AC 358 ms
52,060 KB
testcase_13 AC 356 ms
51,476 KB
testcase_14 AC 365 ms
52,416 KB
testcase_15 AC 370 ms
52,600 KB
testcase_16 AC 378 ms
52,432 KB
testcase_17 AC 371 ms
52,468 KB
testcase_18 AC 355 ms
51,376 KB
testcase_19 AC 362 ms
52,588 KB
testcase_20 AC 352 ms
51,308 KB
testcase_21 AC 348 ms
51,004 KB
testcase_22 AC 369 ms
52,268 KB
testcase_23 AC 368 ms
52,564 KB
testcase_24 AC 361 ms
52,628 KB
testcase_25 AC 365 ms
52,576 KB
testcase_26 AC 348 ms
51,140 KB
testcase_27 AC 351 ms
51,460 KB
testcase_28 AC 368 ms
52,588 KB
testcase_29 AC 359 ms
52,136 KB
testcase_30 AC 346 ms
51,252 KB
testcase_31 AC 348 ms
51,224 KB
testcase_32 AC 353 ms
52,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:1: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
inline fun adjlist(i : Int) : Array<Int> {
^
Main.kt:12:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:20:9: warning: variable 'lst' is never used
    val lst = Array(N, { i -> i })
        ^
Main.kt:23:9: warning: variable 'pi' is never used
    var pi = Array(N, { nil })
        ^

ソースコード

diff #

/**
 * Created by n on 2017/06/11.
 */

import java.util.*


inline fun adjlist(i : Int) : Array<Int> {
    return arrayOf((i + 1) - Integer.bitCount(i + 1) - 1, (i + 1) + Integer.bitCount(i + 1) - 1)
}

fun main(args: Array<String>) {
    val cin = Scanner(System.`in`)
    val N = cin.nextInt()

    val inf = Integer.MAX_VALUE / 3
    val nil = Integer.MIN_VALUE / 3

    var q: Queue<Int> = ArrayDeque()
    val lst = Array(N, { i -> i })

    var d = Array(N, { inf })
    var pi = Array(N, { nil })
    var visited = BooleanArray(N)
    val s = 0

    d[s]       = 0
    visited[s] = true

    q.add(0)
    while (q.isNotEmpty()) {
        val u = q.remove()
        val adj = adjlist(u)
        for (v in adj) {
            if (v < 0 || v >= N || visited[v]) {
                continue
            }
            visited[v] = true
            d[v] = d[u] + 1
            q.add(v)
        }
    }
    val ans = if (d[N - 1] == inf) { -1 } else { d[N - 1] + 1}
    println("${ans}")
}
0