結果

問題 No.3 ビットすごろく
ユーザー AIZAWA MasahiroAIZAWA Masahiro
提出日時 2017-02-27 23:40:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 825 ms / 5,000 ms
コード長 1,020 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-07-01 08:33:53
合計ジャッジ時間 13,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,416 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 145 ms
20,608 KB
testcase_04 AC 98 ms
13,184 KB
testcase_05 AC 321 ms
50,176 KB
testcase_06 AC 161 ms
23,040 KB
testcase_07 AC 117 ms
15,872 KB
testcase_08 AC 237 ms
36,736 KB
testcase_09 AC 449 ms
74,368 KB
testcase_10 AC 593 ms
96,768 KB
testcase_11 AC 400 ms
65,152 KB
testcase_12 AC 308 ms
48,256 KB
testcase_13 AC 131 ms
18,432 KB
testcase_14 AC 561 ms
92,160 KB
testcase_15 AC 804 ms
132,992 KB
testcase_16 AC 716 ms
116,608 KB
testcase_17 AC 783 ms
129,152 KB
testcase_18 AC 130 ms
17,152 KB
testcase_19 AC 816 ms
135,424 KB
testcase_20 AC 98 ms
12,800 KB
testcase_21 AC 89 ms
12,160 KB
testcase_22 AC 580 ms
93,952 KB
testcase_23 AC 825 ms
135,936 KB
testcase_24 AC 821 ms
135,808 KB
testcase_25 AC 805 ms
132,736 KB
testcase_26 AC 87 ms
12,288 KB
testcase_27 AC 135 ms
19,584 KB
testcase_28 AC 693 ms
113,536 KB
testcase_29 AC 410 ms
66,560 KB
testcase_30 AC 90 ms
12,160 KB
testcase_31 AC 93 ms
12,288 KB
testcase_32 AC 372 ms
59,264 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)
  return [1] if n == 1
  move([[1]], n, [])
end

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

0