結果
問題 | No.3 ビットすごろく |
ユーザー | yuki2006 |
提出日時 | 2014-09-30 03:18:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 146 ms / 5,000 ms |
コード長 | 1,509 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 78,856 KB |
実行使用メモリ | 54,288 KB |
最終ジャッジ日時 | 2024-07-01 07:02:59 |
合計ジャッジ時間 | 7,879 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
53,980 KB |
testcase_01 | AC | 132 ms
53,804 KB |
testcase_02 | AC | 133 ms
53,960 KB |
testcase_03 | AC | 136 ms
54,100 KB |
testcase_04 | AC | 137 ms
54,096 KB |
testcase_05 | AC | 137 ms
53,948 KB |
testcase_06 | AC | 136 ms
53,900 KB |
testcase_07 | AC | 138 ms
54,212 KB |
testcase_08 | AC | 137 ms
54,236 KB |
testcase_09 | AC | 140 ms
54,084 KB |
testcase_10 | AC | 143 ms
54,140 KB |
testcase_11 | AC | 140 ms
53,988 KB |
testcase_12 | AC | 141 ms
54,016 KB |
testcase_13 | AC | 134 ms
54,120 KB |
testcase_14 | AC | 144 ms
54,092 KB |
testcase_15 | AC | 143 ms
53,968 KB |
testcase_16 | AC | 145 ms
54,124 KB |
testcase_17 | AC | 142 ms
53,984 KB |
testcase_18 | AC | 138 ms
54,088 KB |
testcase_19 | AC | 146 ms
53,948 KB |
testcase_20 | AC | 143 ms
53,952 KB |
testcase_21 | AC | 137 ms
54,188 KB |
testcase_22 | AC | 144 ms
54,080 KB |
testcase_23 | AC | 143 ms
53,832 KB |
testcase_24 | AC | 146 ms
53,924 KB |
testcase_25 | AC | 143 ms
54,008 KB |
testcase_26 | AC | 136 ms
54,012 KB |
testcase_27 | AC | 138 ms
54,288 KB |
testcase_28 | AC | 144 ms
53,828 KB |
testcase_29 | AC | 138 ms
54,204 KB |
testcase_30 | AC | 133 ms
54,176 KB |
testcase_31 | AC | 135 ms
53,820 KB |
testcase_32 | AC | 137 ms
54,084 KB |
ソースコード
import java.util.ArrayList; import java.util.LinkedList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); boolean[] check = new boolean[N + 1]; System.out.println(bfs(N, check)); } public static class Tuple { public int a; public int b; Tuple(int a, int b) { this.a = a; this.b = b; } } private static int bfs(int n, boolean[] check) { LinkedList<Tuple> queue = new LinkedList<>(); queue.add(new Tuple(1, 1)); check[1] = true; while (queue.size() > 0) { Tuple v = queue.pollFirst(); if (v.a == n) { return v.b; } int bitCount = getBitCount(v.a); int a = v.a - bitCount; int b = v.a + bitCount; if (a > 0) { if (!check[a]) { check[a] = true; queue.add(new Tuple(a, v.b + 1)); } } if (b <= n) { if (!check[b]) { check[b] = true; queue.add(new Tuple(b, v.b + 1)); } } } return -1; } static int getBitCount(int n) { int count; for (count = 0; n > 0; count++) { n = n & (n - 1); } return count; } }