結果

問題 No.3 ビットすごろく
ユーザー mosmos_21mosmos_21
提出日時 2017-06-16 23:02:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 78,872 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-07-01 08:44:49
合計ジャッジ時間 8,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,252 KB
testcase_01 AC 121 ms
40,624 KB
testcase_02 AC 132 ms
41,372 KB
testcase_03 AC 136 ms
41,344 KB
testcase_04 AC 132 ms
41,332 KB
testcase_05 AC 133 ms
41,028 KB
testcase_06 AC 130 ms
41,232 KB
testcase_07 AC 130 ms
41,172 KB
testcase_08 AC 133 ms
41,328 KB
testcase_09 AC 121 ms
40,224 KB
testcase_10 AC 127 ms
40,656 KB
testcase_11 AC 136 ms
41,532 KB
testcase_12 AC 137 ms
41,048 KB
testcase_13 AC 139 ms
41,396 KB
testcase_14 AC 127 ms
40,320 KB
testcase_15 AC 146 ms
41,408 KB
testcase_16 AC 148 ms
41,724 KB
testcase_17 AC 141 ms
41,488 KB
testcase_18 AC 136 ms
41,276 KB
testcase_19 AC 141 ms
41,512 KB
testcase_20 AC 132 ms
41,180 KB
testcase_21 AC 131 ms
41,064 KB
testcase_22 AC 141 ms
41,344 KB
testcase_23 AC 140 ms
41,276 KB
testcase_24 AC 127 ms
40,580 KB
testcase_25 AC 141 ms
41,444 KB
testcase_26 AC 128 ms
41,300 KB
testcase_27 AC 135 ms
41,104 KB
testcase_28 AC 146 ms
41,332 KB
testcase_29 AC 136 ms
41,372 KB
testcase_30 AC 134 ms
41,460 KB
testcase_31 AC 125 ms
41,112 KB
testcase_32 AC 131 ms
41,484 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 (0 < a - b && d[a - b] > d[a] + 1) {
				d[a - b] = d[a] + 1;
				q.add(a - b);
			}
			if (a + b <= n && d[a + b] > d[a] + 1) {
				d[a + b] = d[a] + 1;
				q.add(a + b);
			}
		}
		System.out.println(d[n] == Integer.MAX_VALUE ? -1 : d[n]);
	}

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