結果

問題 No.3 ビットすごろく
ユーザー AIZAWA MasahiroAIZAWA Masahiro
提出日時 2017-02-27 23:31:53
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 997 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 136,320 KB
最終ジャッジ日時 2024-06-11 20:11:57
合計ジャッジ時間 11,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 128 ms
20,736 KB
testcase_04 AC 87 ms
13,184 KB
testcase_05 AC 298 ms
50,176 KB
testcase_06 AC 140 ms
22,912 KB
testcase_07 AC 97 ms
16,000 KB
testcase_08 AC 202 ms
36,736 KB
testcase_09 AC 395 ms
74,368 KB
testcase_10 AC 531 ms
96,768 KB
testcase_11 AC 361 ms
65,024 KB
testcase_12 AC 261 ms
48,128 KB
testcase_13 AC 113 ms
18,432 KB
testcase_14 AC 491 ms
92,160 KB
testcase_15 AC 693 ms
132,864 KB
testcase_16 AC 618 ms
117,120 KB
testcase_17 AC 700 ms
129,664 KB
testcase_18 AC 117 ms
16,896 KB
testcase_19 AC 730 ms
135,808 KB
testcase_20 AC 86 ms
12,672 KB
testcase_21 AC 78 ms
12,160 KB
testcase_22 AC 506 ms
94,080 KB
testcase_23 AC 734 ms
136,320 KB
testcase_24 AC 753 ms
135,552 KB
testcase_25 AC 776 ms
132,608 KB
testcase_26 WA -
testcase_27 AC 132 ms
19,456 KB
testcase_28 AC 608 ms
113,280 KB
testcase_29 AC 350 ms
66,304 KB
testcase_30 AC 76 ms
12,160 KB
testcase_31 AC 77 ms
12,416 KB
testcase_32 AC 319 ms
59,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

def to_binary(x)
  binary_str = ''
  until x == 0 || x == 1
    binary_str += (x % 2).to_s
    x /= 2
  end
  binary_str += x.to_s
  binary_str.reverse
end

def get_distance(current)
  to_binary(current).split('').map(&:to_i).inject(:+)
end

def move(histories, n, passed)
  next_histories = histories.map do |history|
    distance = get_distance(history.last)
    [
      history.dup + [history.last + distance],
      history.dup + [history.last - distance]
    ].reject do |new_history|
      next_position = new_history.last
      return new_history if next_position == n

      next true if passed.include?(new_history.last)
      next true if next_position < 1 || next_position > n
      false
    end
  end.flatten(1).uniq {|history| history.last}
  return [] if next_histories.empty?
  passed += next_histories.map(&:last)
  move(next_histories, n, passed)
end

def move_to_goal(n)
  move([[1]], n, [])
end

result = move_to_goal(n)
puts result.empty? ? -1 : result.length

0