結果

問題 No.3 ビットすごろく
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 11:04:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 915 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-07-01 08:44:57
合計ジャッジ時間 7,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,184 KB
testcase_01 AC 116 ms
40,040 KB
testcase_02 AC 132 ms
41,700 KB
testcase_03 AC 133 ms
41,392 KB
testcase_04 AC 124 ms
40,272 KB
testcase_05 AC 132 ms
41,608 KB
testcase_06 AC 121 ms
40,328 KB
testcase_07 AC 132 ms
41,436 KB
testcase_08 AC 134 ms
41,424 KB
testcase_09 AC 137 ms
41,452 KB
testcase_10 AC 140 ms
41,264 KB
testcase_11 AC 136 ms
41,420 KB
testcase_12 AC 135 ms
41,188 KB
testcase_13 AC 131 ms
41,572 KB
testcase_14 AC 135 ms
41,568 KB
testcase_15 AC 128 ms
41,088 KB
testcase_16 AC 142 ms
41,532 KB
testcase_17 AC 140 ms
41,624 KB
testcase_18 AC 131 ms
41,212 KB
testcase_19 AC 126 ms
40,236 KB
testcase_20 AC 132 ms
41,344 KB
testcase_21 AC 127 ms
41,212 KB
testcase_22 AC 141 ms
41,832 KB
testcase_23 AC 140 ms
41,492 KB
testcase_24 AC 137 ms
41,784 KB
testcase_25 AC 139 ms
41,440 KB
testcase_26 AC 128 ms
41,384 KB
testcase_27 AC 130 ms
41,056 KB
testcase_28 AC 140 ms
41,608 KB
testcase_29 AC 135 ms
41,248 KB
testcase_30 AC 132 ms
41,116 KB
testcase_31 AC 127 ms
41,040 KB
testcase_32 AC 134 ms
41,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Deque;
import java.util.Scanner;

public class Main {
	static Scanner in = new Scanner(System.in);

	public static void main(String[] args) {
		int n = in.nextInt();
		if(n == 1){
			System.out.println(1);
			return;
		}
		int[] d = new int[n + 1];
		Arrays.fill(d, Integer.MAX_VALUE);
		d[1] = 1;
		Deque<Integer> q = new ArrayDeque<>();
		q.add(1);
		while (q.size() > 0) {
			int a = q.poll(), b = bit(a);
			if(a + b == n){
				System.out.println(d[a] + 1);
				return;
			}
			if (0 < a - b && d[a - b] == Integer.MAX_VALUE) {
				d[a - b] = d[a] + 1;
				q.add(a - b);
			}
			if (a + b < n && d[a + b] == Integer.MAX_VALUE) {
				d[a + b] = d[a] + 1;
				q.add(a + b);
			}
		}
		System.out.println(-1);
	}

	public static int bit(int n) {
		int s = 0;
		while (n > 0) {
			if (n % 2 == 1) {
				s++;
			}
			n /= 2;
		}
		return s;
	}
}
0