結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 780 ms
12,544 KB
testcase_04 AC 133 ms
12,160 KB
testcase_05 AC 3,799 ms
12,544 KB
testcase_06 AC 937 ms
12,416 KB
testcase_07 AC 350 ms
12,288 KB
testcase_08 AC 2,324 ms
12,416 KB
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:33: 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)

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