結果

問題 No.3 ビットすごろく
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 11:02:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 2,883 ms
コンパイル使用メモリ 79,404 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-01 09:29:11
合計ジャッジ時間 7,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,112 KB
testcase_01 AC 127 ms
53,800 KB
testcase_02 AC 124 ms
54,040 KB
testcase_03 AC 127 ms
53,660 KB
testcase_04 AC 123 ms
53,908 KB
testcase_05 AC 114 ms
53,120 KB
testcase_06 AC 125 ms
53,680 KB
testcase_07 AC 123 ms
53,732 KB
testcase_08 AC 127 ms
53,812 KB
testcase_09 AC 124 ms
53,868 KB
testcase_10 AC 127 ms
53,980 KB
testcase_11 AC 125 ms
53,732 KB
testcase_12 AC 126 ms
53,716 KB
testcase_13 AC 123 ms
53,680 KB
testcase_14 AC 126 ms
53,780 KB
testcase_15 AC 139 ms
53,900 KB
testcase_16 AC 139 ms
53,800 KB
testcase_17 AC 138 ms
54,280 KB
testcase_18 AC 126 ms
53,772 KB
testcase_19 AC 135 ms
54,128 KB
testcase_20 AC 131 ms
53,984 KB
testcase_21 AC 135 ms
53,728 KB
testcase_22 AC 137 ms
53,636 KB
testcase_23 AC 131 ms
53,880 KB
testcase_24 AC 141 ms
53,876 KB
testcase_25 AC 132 ms
54,072 KB
testcase_26 WA -
testcase_27 AC 130 ms
53,996 KB
testcase_28 AC 132 ms
54,096 KB
testcase_29 AC 126 ms
53,800 KB
testcase_30 AC 123 ms
53,916 KB
testcase_31 AC 123 ms
53,928 KB
testcase_32 AC 113 ms
52,880 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();
		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