結果
問題 | No.3 ビットすごろく |
ユーザー | sakuraigaku |
提出日時 | 2019-05-20 00:20:52 |
言語 | Scala(Beta) (3.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,248 bytes |
コンパイル時間 | 11,088 ms |
コンパイル使用メモリ | 276,716 KB |
実行使用メモリ | 80,120 KB |
最終ジャッジ日時 | 2024-07-02 01:35:23 |
合計ジャッジ時間 | 34,580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,026 ms
71,452 KB |
testcase_01 | AC | 1,048 ms
64,380 KB |
testcase_02 | AC | 1,052 ms
64,244 KB |
testcase_03 | AC | 1,352 ms
65,576 KB |
testcase_04 | AC | 1,334 ms
65,968 KB |
testcase_05 | AC | 1,764 ms
67,940 KB |
testcase_06 | AC | 1,340 ms
65,712 KB |
testcase_07 | AC | 1,362 ms
65,764 KB |
testcase_08 | AC | 1,668 ms
67,932 KB |
testcase_09 | AC | 4,007 ms
74,112 KB |
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 | -- | - |
ソースコード
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.poll() if (p.now == i) { ans += p minCount = p.count } else if (1 <= p.now && p.now <= i &&min(p.count)) { 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)) } } } 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])