結果

問題 No.3 ビットすごろく
ユーザー tana_twtrtana_twtr
提出日時 2016-10-30 16:07:06
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-11-24 23:38:47
合計ジャッジ時間 69,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
25,088 KB
testcase_01 AC 89 ms
19,112 KB
testcase_02 AC 89 ms
19,360 KB
testcase_03 AC 99 ms
26,368 KB
testcase_04 TLE -
testcase_05 AC 101 ms
25,088 KB
testcase_06 AC 96 ms
24,448 KB
testcase_07 TLE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 101 ms
12,416 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 108 ms
12,160 KB
testcase_15 AC 114 ms
12,160 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 RE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 112 ms
12,288 KB
testcase_23 AC 117 ms
12,160 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 RE -
testcase_29 RE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def main
    
    n = STDIN.readline.chomp.to_i
    table_forward, table_back = init_table(n)
    count = sugoroku(n, n, 1, table_forward, table_back)
    puts count < n ? count : -1

end

def init_table(n)

    table_forward = []
    table_back = []

    1.upto(n) do |i|

        table_forward[i] = i + bitcount(i)
        table_back[i] = i - bitcount(i)

    end

    [table_forward, table_back]

end

def sugoroku(n, goal, count, table_forward, table_back)

    ret = n

    if count >= n
        return ret
    elsif goal == 1
        return count
    end

    1.upto(goal - 1) do |i|
        if table_forward[i] == goal
            ret_tmp = sugoroku(n, i, count + 1, table_forward, table_back)
            ret = ret_tmp if ret_tmp < ret
        end
    end

    n.downto(goal + 1) do |i|
        if table_back[i] == goal
            ret_tmp = sugoroku(n, i, count + 1, table_forward, table_back)
            ret = ret_tmp if ret_tmp < ret
        end
    end

    ret

end

def bitcount(n)

    count = 0
    n.bit_length.times {|i| count += 1 if n[i] == 1}
    count

end

main()

0