結果
問題 | No.3 ビットすごろく |
ユーザー | tshigi |
提出日時 | 2016-08-01 12:15:40 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-11-06 21:38:13 |
合計ジャッジ時間 | 4,926 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
12,032 KB |
testcase_01 | AC | 91 ms
12,160 KB |
testcase_02 | AC | 95 ms
12,032 KB |
testcase_03 | AC | 103 ms
13,952 KB |
testcase_04 | AC | 97 ms
12,288 KB |
testcase_05 | AC | 116 ms
16,384 KB |
testcase_06 | AC | 104 ms
13,824 KB |
testcase_07 | AC | 102 ms
13,568 KB |
testcase_08 | AC | 111 ms
15,232 KB |
testcase_09 | AC | 121 ms
17,152 KB |
testcase_10 | AC | 127 ms
18,176 KB |
testcase_11 | AC | 119 ms
16,896 KB |
testcase_12 | AC | 112 ms
15,744 KB |
testcase_13 | AC | 101 ms
13,824 KB |
testcase_14 | AC | 125 ms
17,792 KB |
testcase_15 | AC | 134 ms
18,816 KB |
testcase_16 | AC | 130 ms
18,304 KB |
testcase_17 | AC | 135 ms
18,688 KB |
testcase_18 | AC | 102 ms
13,440 KB |
testcase_19 | AC | 135 ms
18,944 KB |
testcase_20 | AC | 96 ms
12,416 KB |
testcase_21 | AC | 92 ms
12,160 KB |
testcase_22 | AC | 128 ms
17,792 KB |
testcase_23 | AC | 136 ms
18,944 KB |
testcase_24 | AC | 137 ms
18,816 KB |
testcase_25 | AC | 139 ms
18,816 KB |
testcase_26 | WA | - |
testcase_27 | AC | 106 ms
13,952 KB |
testcase_28 | AC | 130 ms
18,176 KB |
testcase_29 | AC | 120 ms
17,024 KB |
testcase_30 | AC | 90 ms
12,288 KB |
testcase_31 | AC | 92 ms
12,160 KB |
testcase_32 | AC | 117 ms
16,384 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 search