結果

問題 No.3 ビットすごろく
ユーザー DialBirdDialBird
提出日時 2016-11-11 11:09:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-05-04 02:04:28
合計ジャッジ時間 15,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:34: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i
INF = 10000
@dp = Array.new(N+1, INF)
@dp[1] = 1

def binary_1_count(num)
  count_1 = 0
  while num > 1 do
    count_1 += 1 if num % 2 == 1
    num /= 2
  end
  count_1 += 1
end

# iと書かれたマスに@dp(i)回目で移動してきた
# @dpのこの位置は前もって書いてあるものとする
def move(i)
  count = binary_1_count(i)

  if i - count > 0 &&  @dp[i]+1 < @dp[i-count]
    @dp[i-count] = @dp[i]+1
    move(i-count)
  end
  if i + count <= N && @dp[i]+1 < @dp[i+count] 
    @dp[i+count] = @dp[i]+1
    move(i+count)
  end
end

move(1)
p @dp

if @dp[N] == INF
  puts -1
else
  puts @dp[N]
end
0