結果
問題 | No.3 ビットすごろく |
ユーザー | yuki2006 |
提出日時 | 2015-05-31 17:28:51 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,534 bytes |
コンパイル時間 | 3,466 ms |
コンパイル使用メモリ | 79,716 KB |
実行使用メモリ | 144,808 KB |
最終ジャッジ日時 | 2024-07-06 13:01:24 |
合計ジャッジ時間 | 15,235 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
54,244 KB |
testcase_01 | AC | 124 ms
54,288 KB |
testcase_02 | AC | 127 ms
54,224 KB |
testcase_03 | AC | 218 ms
57,980 KB |
testcase_04 | AC | 147 ms
54,024 KB |
testcase_05 | AC | 410 ms
65,712 KB |
testcase_06 | AC | 207 ms
58,060 KB |
testcase_07 | AC | 200 ms
57,264 KB |
testcase_08 | AC | 254 ms
58,132 KB |
testcase_09 | AC | 2,258 ms
98,000 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,480 ms
88,956 KB |
testcase_12 | AC | 356 ms
65,340 KB |
testcase_13 | AC | 193 ms
57,820 KB |
testcase_14 | AC | 4,845 ms
144,808 KB |
testcase_15 | TLE | - |
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.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Yuki003 { int bitCount(int value) { int count = 0; while (value > 0) { count += value % 2; value /= 2; } return count; } Yuki003() { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); System.out.println(search(N)); } private int search(final int N) { boolean[] visit = new boolean[N + 1]; ArrayList<Integer> list = new ArrayList<>(); ArrayList<Integer> next = new ArrayList<>(); list.add(1); int move = 1; visit[1] = true; while (list.size() > 0) { for (int i = 0; i < list.size(); i++) { final Integer value = list.get(i); if (value == N) { return move; } visit[value] = true; int bit = bitCount(value); int prev = value - bit; int nxt = value + bit; if (1 <= prev && !visit[prev]) { next.add(prev); } if (nxt <= N && !visit[nxt]) { next.add(nxt); } } list.clear(); list.addAll(next); next.clear(); move++; } return -1; } public static void main(String[] args) { new Yuki003(); } }