結果

問題 No.3 ビットすごろく
ユーザー nakamura sosukenakamura sosuke
提出日時 2019-07-05 10:17:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 509 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-01 09:24:11
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 98 ms
12,416 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 117 ms
12,416 KB
testcase_06 AC 100 ms
12,416 KB
testcase_07 AC 95 ms
12,288 KB
testcase_08 AC 112 ms
12,544 KB
testcase_09 AC 129 ms
12,416 KB
testcase_10 AC 152 ms
12,672 KB
testcase_11 AC 126 ms
12,544 KB
testcase_12 AC 115 ms
12,544 KB
testcase_13 AC 96 ms
12,544 KB
testcase_14 AC 142 ms
12,544 KB
testcase_15 AC 155 ms
12,544 KB
testcase_16 AC 154 ms
12,672 KB
testcase_17 AC 158 ms
12,672 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 160 ms
12,672 KB
testcase_20 AC 92 ms
12,160 KB
testcase_21 AC 88 ms
12,160 KB
testcase_22 AC 144 ms
12,672 KB
testcase_23 AC 159 ms
12,672 KB
testcase_24 AC 158 ms
12,672 KB
testcase_25 AC 157 ms
12,416 KB
testcase_26 AC 86 ms
12,288 KB
testcase_27 AC 97 ms
12,544 KB
testcase_28 AC 152 ms
12,672 KB
testcase_29 AC 126 ms
12,416 KB
testcase_30 AC 88 ms
12,288 KB
testcase_31 AC 88 ms
12,160 KB
testcase_32 AC 120 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:22: warning: mismatched indentations at 'end' with 'if' at 17
Main.rb:29: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i
INF = 10**10

dp = Array.new(N+1){ INF }
dp[0], dp[1] = 0, 1

def move(dp, from)
  dist = from.to_s(2).count('1')
	# ++
	if from + dist <= N
    if dp[from + dist] > dp[from] + 1
      dp[from + dist] = dp[from] + 1
      dp = move(dp, from + dist)
    end
	end
	# --
	if from - dist >= 0
    if dp[from - dist] > dp[from] + 1
      dp[from - dist] = dp[from] + 1
      dp = move(dp, from - dist)
    end
  end
  return dp
end

dp = move(dp, 1)

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