結果

問題 No.3 ビットすごろく
ユーザー mmmpppmmmppp
提出日時 2017-02-24 18:01:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 41,120 KB
最終ジャッジ日時 2024-06-10 22:25:50
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 96 ms
12,288 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
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 #

N=gets.to_i
A=(0..N).map{|i|i.to_s(2).count ?1}
h=->n,r{
  if n < 4
    ([*1..n]+r|[]).size
  else
    m=([*n-n.bit_length..N]-r).select{|i|i+A[i]==n||i-A[i]==n}.min_by{|i|h[i,r+[i]]}
    break 1e5if !m
    h[m,r<<m]
  end
}
p h[N,[N]]
0