結果
問題 | No.3 ビットすごろく |
ユーザー | kashiwagi513 |
提出日時 | 2019-02-20 00:35:32 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,167 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 79,160 KB |
実行使用メモリ | 834,336 KB |
最終ジャッジ日時 | 2024-10-13 06:46:04 |
合計ジャッジ時間 | 14,908 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
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 | -- | - |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; class Main { public static int getRange(int n, int acc){ if(n==0){return acc;} else{return getRange(n/2, acc+(n%2));} } public static List<Integer> canReachTo(int max, int goal){ List<Integer> ls = new ArrayList<Integer>(); for(int i=1; i <= max; i++){ int r = getRange(i, 0); if(i==goal+r && i <= max){ls.add(i);} if(i==goal-r && 1 <= i){ls.add(i);} } return ls; } public static int minPathTo(int max, int goal, int acc){ List<Integer> ls = canReachTo(max, goal); List<Integer> temp = new ArrayList<Integer>(); if(goal == 1){return acc;} for(Integer i : ls){ int j = minPathTo(max, i.intValue(), acc+1); if(j != -1) { temp.add(j); } } if(temp.size() <= 0){return -1;} else{ return Collections.min(temp); } } public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); System.out.println(minPathTo(n, n, 0)); } }