結果

問題 No.3 ビットすごろく
ユーザー koba-e964koba-e964
提出日時 2015-12-09 02:57:07
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,075 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 11,364 ms
コンパイル使用メモリ 266,104 KB
実行使用メモリ 65,980 KB
最終ジャッジ日時 2024-07-01 07:41:36
合計ジャッジ時間 46,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 988 ms
65,904 KB
testcase_01 AC 983 ms
65,700 KB
testcase_02 AC 1,001 ms
65,656 KB
testcase_03 AC 1,012 ms
65,760 KB
testcase_04 AC 993 ms
65,644 KB
testcase_05 AC 1,027 ms
65,676 KB
testcase_06 AC 1,013 ms
65,516 KB
testcase_07 AC 1,006 ms
65,652 KB
testcase_08 AC 1,035 ms
65,824 KB
testcase_09 AC 1,043 ms
65,924 KB
testcase_10 AC 1,053 ms
65,796 KB
testcase_11 AC 1,037 ms
65,680 KB
testcase_12 AC 1,035 ms
65,792 KB
testcase_13 AC 1,008 ms
65,632 KB
testcase_14 AC 1,038 ms
65,980 KB
testcase_15 AC 1,075 ms
65,852 KB
testcase_16 AC 1,049 ms
65,720 KB
testcase_17 AC 1,061 ms
65,660 KB
testcase_18 AC 1,007 ms
65,848 KB
testcase_19 AC 1,050 ms
65,764 KB
testcase_20 AC 987 ms
65,928 KB
testcase_21 AC 977 ms
65,624 KB
testcase_22 AC 1,037 ms
65,804 KB
testcase_23 AC 1,046 ms
65,568 KB
testcase_24 AC 1,055 ms
65,740 KB
testcase_25 AC 1,046 ms
65,516 KB
testcase_26 AC 975 ms
65,652 KB
testcase_27 AC 1,016 ms
65,908 KB
testcase_28 AC 1,059 ms
65,796 KB
testcase_29 AC 1,055 ms
65,640 KB
testcase_30 AC 1,018 ms
65,552 KB
testcase_31 AC 996 ms
65,508 KB
testcase_32 AC 1,057 ms
65,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * Reference: http://lizan.asia/blog/2012/12/11/scala-competitive/
 */

object Main extends App {
  import java.{util => ju}
  import scala.annotation._
  import scala.collection._
  import scala.collection.{mutable => mu}
  import scala.collection.JavaConverters._
  import scala.math._

  val sc = new ju.Scanner(System.in)

  val n = sc.nextInt
  val que = new mu.Queue[(Int, Int)]
  val inf = 0x3fffffff
  val dist = Array.fill(n + 1)(inf)
  que += 0 -> 1
  while (que.nonEmpty) {
    val (d, t) = que.dequeue
    if (d < dist(t)) {
      dist(t) = d
      val bc = Integer.bitCount(t)
      if (t - bc >= 1) que += (d + 1) -> (t - bc)
      if (t + bc <= n) que += (d + 1) -> (t + bc)
    }
  }
  println(if (dist(n) == inf) -1 else dist(n) + 1)
}
0