結果
問題 | No.3 ビットすごろく |
ユーザー | aimBULL |
提出日時 | 2016-06-02 00:51:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,311 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 76,952 KB |
実行使用メモリ | 41,668 KB |
最終ジャッジ日時 | 2024-10-08 05:13:25 |
合計ジャッジ時間 | 6,715 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 119 ms
41,404 KB |
testcase_03 | AC | 109 ms
41,164 KB |
testcase_04 | WA | - |
testcase_05 | AC | 110 ms
41,192 KB |
testcase_06 | AC | 100 ms
40,260 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 114 ms
41,020 KB |
testcase_13 | AC | 118 ms
41,032 KB |
testcase_14 | AC | 114 ms
41,308 KB |
testcase_15 | AC | 115 ms
41,140 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 102 ms
40,428 KB |
testcase_23 | AC | 122 ms
41,120 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 115 ms
41,132 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); int[] memo = create(n); calc(0, create(n)); System.out.println(memo[n] == Integer.MAX_VALUE ? -1 : memo[n]); } // データの格納領域を作成する public static int[] create(int n){ int[] memo = new int[n+1]; memo[0] = Integer.MAX_VALUE; memo[1] = 1; for(int i = 2; i < memo.length; i++){ memo[i] = Integer.MAX_VALUE; } return memo; } // 移動距離計算する // 移動可能なマスの範囲内で移動距離を短縮できる間、再帰的に処理する public static void calc(int pos, int[] memo){ int cnt = Integer.bitCount(pos); // 移動した場合の移動距離を計算しておく int cost = memo[pos] + 1; // 前進 { int nextPos = pos + cnt; // 移動数が小さくなるなら、結果を記録して次のマスへ if(nextPos < memo.length && cost < memo[nextPos]){ memo[nextPos] = cost; calc(nextPos, memo); } } // 後退 { int prevPos = pos - cnt; // 移動数が小さくなるなら、結果を記録して次のマスへ if(prevPos > 0 && cost < memo[prevPos]){ memo[prevPos] = cost; calc(prevPos, memo); } } } }