結果

問題 No.3 ビットすごろく
ユーザー sakuraigakusakuraigaku
提出日時 2019-05-19 23:49:36
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 9,811 ms
コンパイル使用メモリ 269,320 KB
実行使用メモリ 79,772 KB
最終ジャッジ日時 2024-07-02 01:33:28
合計ジャッジ時間 32,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 971 ms
68,064 KB
testcase_01 AC 982 ms
64,648 KB
testcase_02 AC 978 ms
64,564 KB
testcase_03 AC 1,273 ms
65,588 KB
testcase_04 AC 1,243 ms
65,816 KB
testcase_05 AC 1,633 ms
67,956 KB
testcase_06 AC 1,264 ms
65,880 KB
testcase_07 AC 1,284 ms
65,924 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util
import scala.collection.mutable


object Main {

  def main(args: Array[String]): Unit = {

    val sc = new java.util.Scanner(System.in)
    val i: Int = sc.nextInt()

    val queue = new util.ArrayDeque[Point]()
    val ans = mutable.Set(Point(-1, -1, mutable.Set(-1)))

    queue.add(Point(1, 1, mutable.Set(1)))
    while (!queue.isEmpty) {
      val p = queue.poll()
      if (p.now == i) {
        ans += p
      } else if (1 <= p.now && p.now <= i) {
        val newPoint: Int = p.now.toBinaryString.replaceAll("0", "").length
        if (!p.history(p.now + newPoint)) {
          queue.add(Point(p.count + 1, p.now + newPoint, p.history += p.now))
        }
        if (!p.history(p.now - newPoint)) {
          queue.add(Point(p.count + 1, p.now - newPoint, p.history += p.now))
        }
      }
    }

    val max: Int = ans.seq.map(p => p.count).max
    printf(max.toString)

  }

}

case class Point(count: Int, now: Int, history: mutable.Set[Int])
0