結果
問題 | No.3 ビットすごろく |
ユーザー | tshigi |
提出日時 | 2016-08-01 12:16:30 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 766 bytes |
コンパイル時間 | 57 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-07-01 08:01:55 |
合計ジャッジ時間 | 4,684 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
12,288 KB |
testcase_01 | AC | 92 ms
12,160 KB |
testcase_02 | AC | 89 ms
12,416 KB |
testcase_03 | AC | 102 ms
14,080 KB |
testcase_04 | AC | 95 ms
12,544 KB |
testcase_05 | AC | 115 ms
16,512 KB |
testcase_06 | AC | 102 ms
14,208 KB |
testcase_07 | AC | 99 ms
13,440 KB |
testcase_08 | AC | 110 ms
15,488 KB |
testcase_09 | AC | 120 ms
17,280 KB |
testcase_10 | AC | 125 ms
18,176 KB |
testcase_11 | AC | 116 ms
16,896 KB |
testcase_12 | AC | 111 ms
16,128 KB |
testcase_13 | AC | 98 ms
13,696 KB |
testcase_14 | AC | 123 ms
17,792 KB |
testcase_15 | AC | 131 ms
18,816 KB |
testcase_16 | AC | 124 ms
18,304 KB |
testcase_17 | AC | 127 ms
19,072 KB |
testcase_18 | AC | 96 ms
13,440 KB |
testcase_19 | AC | 129 ms
18,944 KB |
testcase_20 | AC | 91 ms
12,544 KB |
testcase_21 | AC | 88 ms
12,416 KB |
testcase_22 | AC | 121 ms
17,792 KB |
testcase_23 | AC | 131 ms
19,072 KB |
testcase_24 | AC | 131 ms
18,944 KB |
testcase_25 | AC | 127 ms
19,072 KB |
testcase_26 | AC | 87 ms
12,288 KB |
testcase_27 | AC | 99 ms
14,208 KB |
testcase_28 | AC | 126 ms
18,304 KB |
testcase_29 | AC | 117 ms
17,152 KB |
testcase_30 | AC | 90 ms
12,288 KB |
testcase_31 | AC | 90 ms
12,160 KB |
testcase_32 | AC | 115 ms
16,512 KB |
コンパイルメッセージ
Syntax OK
ソースコード
inputs = STDIN.readlines.map(&:chomp) N = inputs[0].to_i class Koma def initialize(pos) @pos = pos end attr_reader :pos def ==(other) @pos == other.pos end def valid? 1 <= @pos && @pos <= N end def goal? @pos == N end def next_cands ons = @pos.to_s(2).count('1') [Koma.new(@pos + ons), Koma.new(@pos - ons)].select(&:valid?) end end def search queue = [[Koma.new(1)]] visited = { 1 => true } until queue.empty? path = queue.shift cands = path.last.next_cands.reject { |cand| visited[cand.pos] } return path.size + 1 if cands.any?(&:goal?) queue.push(*cands.map { |cand| path + [cand] }) visited.update(cands.map { |cand| [cand.pos, true] }.to_h) end -1 end puts N == 1 ? 1 : search