結果

問題 No.3 ビットすごろく
ユーザー DialBirdDialBird
提出日時 2016-11-11 11:11:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 624 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-11-25 08:03:52
合計ジャッジ時間 102,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
24,576 KB
testcase_01 AC 74 ms
18,976 KB
testcase_02 AC 75 ms
18,980 KB
testcase_03 AC 756 ms
24,704 KB
testcase_04 AC 128 ms
24,832 KB
testcase_05 AC 3,655 ms
24,960 KB
testcase_06 AC 918 ms
24,704 KB
testcase_07 AC 349 ms
24,704 KB
testcase_08 AC 2,287 ms
24,832 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 3,501 ms
19,236 KB
testcase_13 AC 557 ms
12,288 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 426 ms
12,160 KB
testcase_19 TLE -
testcase_20 AC 99 ms
12,160 KB
testcase_21 AC 75 ms
12,160 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 79 ms
12,032 KB
testcase_27 AC 665 ms
12,160 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 77 ms
12,160 KB
testcase_31 AC 81 ms
12,288 KB
testcase_32 AC 4,672 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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