結果
問題 | No.3 ビットすごろく |
ユーザー | tana_twtr |
提出日時 | 2016-10-30 17:23:06 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 49 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 28,416 KB |
最終ジャッジ日時 | 2024-11-24 23:42:58 |
合計ジャッジ時間 | 63,336 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
26,368 KB |
testcase_01 | AC | 90 ms
26,496 KB |
testcase_02 | AC | 87 ms
26,752 KB |
testcase_03 | AC | 92 ms
26,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 99 ms
26,880 KB |
testcase_06 | AC | 92 ms
26,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | AC | 98 ms
12,288 KB |
testcase_13 | AC | 92 ms
12,160 KB |
testcase_14 | AC | 107 ms
12,288 KB |
testcase_15 | AC | 115 ms
12,032 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 112 ms
12,160 KB |
testcase_23 | AC | 116 ms
12,160 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
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, visited) ret = n if count >= n return ret elsif goal == 1 return count end visited[goal] = true 1.upto(goal - 1) do |i| if visited[i] == nil && table_forward[i] == goal ret_tmp = sugoroku(n, i, count + 1, table_forward, table_back, visited) ret = ret_tmp if ret_tmp < ret end end n.downto(goal + 1) do |i| if visited[i] == nil && table_back[i] == goal ret_tmp = sugoroku(n, i, count + 1, table_forward, table_back, visited) 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()