結果

問題 No.3 ビットすごろく
ユーザー DialBirdDialBird
提出日時 2018-05-09 10:43:01
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 11,284 KB
実行使用メモリ 90,536 KB
最終ジャッジ日時 2023-09-10 11:16:13
合計ジャッジ時間 7,824 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def bit_count(n)
  cnt = 0
  while 0 < n
    n &= n - 1
    cnt += 1
  end
  cnt
end

def main
  n = gets.to_i
  dp = Array.new(10001, 0)
  dp[0] = 1
  queue = [1]
  while 0 < queue.length
    pos = queue.shift
    bc = bit_count(pos)
    [pos + bc, pos - bc].each do |next_pos|
      next if next_pos < 2 && 10000 < next_pos
      return dp[pos] + 1 if next_pos == n

      dp[next_pos] = dp[pos] + 1
      queue << next_pos
    end
  end
  -1
end

puts main
0