結果

問題 No.3 ビットすごろく
ユーザー sakuraigakusakuraigaku
提出日時 2019-05-20 00:15:48
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 9,839 ms
コンパイル使用メモリ 265,032 KB
実行使用メモリ 66,108 KB
最終ジャッジ日時 2024-07-02 01:37:16
合計ジャッジ時間 49,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
64,312 KB
testcase_01 AC 975 ms
64,492 KB
testcase_02 AC 966 ms
64,252 KB
testcase_03 AC 1,065 ms
64,516 KB
testcase_04 WA -
testcase_05 AC 1,131 ms
65,520 KB
testcase_06 AC 1,063 ms
64,744 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,135 ms
65,556 KB
testcase_13 AC 1,055 ms
64,384 KB
testcase_14 AC 1,227 ms
65,336 KB
testcase_15 AC 1,239 ms
65,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 975 ms
64,500 KB
testcase_22 AC 1,228 ms
65,732 KB
testcase_23 AC 1,241 ms
65,508 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 965 ms
64,656 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util
import scala.collection.mutable


object Main {

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

    var minCount: Int = 0
//    def min(count: Int): Boolean = {
//      if (minCount == 0) {
//        true
//      }else if(count>minCount){
//        false
//      }else{
//        true
//      }
//    }

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

    val queue = new util.ArrayDeque[Point]()
    val ans: mutable.Set[Point] = mutable.Set[Point]()

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

    if (ans.isEmpty) {
      printf("-1")
    } else {
      printf(ans.seq.map(p => p.count).min.toString)
    }

  }

}

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