結果

問題 No.3 ビットすごろく
ユーザー rn4rurn4ru
提出日時 2016-04-12 23:06:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,394 ms / 5,000 ms
コード長 1,004 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-07-01 07:50:44
合計ジャッジ時間 25,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,816 KB
testcase_01 AC 134 ms
54,028 KB
testcase_02 AC 136 ms
53,892 KB
testcase_03 AC 179 ms
56,964 KB
testcase_04 AC 155 ms
53,912 KB
testcase_05 AC 245 ms
57,436 KB
testcase_06 AC 178 ms
56,884 KB
testcase_07 AC 172 ms
56,084 KB
testcase_08 AC 208 ms
57,508 KB
testcase_09 AC 445 ms
64,100 KB
testcase_10 AC 923 ms
65,232 KB
testcase_11 AC 359 ms
60,012 KB
testcase_12 AC 241 ms
57,420 KB
testcase_13 AC 174 ms
56,348 KB
testcase_14 AC 790 ms
65,360 KB
testcase_15 AC 2,020 ms
72,036 KB
testcase_16 AC 1,136 ms
65,160 KB
testcase_17 AC 1,795 ms
70,784 KB
testcase_18 AC 170 ms
56,100 KB
testcase_19 AC 2,357 ms
76,428 KB
testcase_20 AC 145 ms
54,356 KB
testcase_21 AC 133 ms
54,028 KB
testcase_22 AC 831 ms
65,328 KB
testcase_23 AC 2,394 ms
76,112 KB
testcase_24 AC 2,364 ms
76,204 KB
testcase_25 AC 1,995 ms
72,316 KB
testcase_26 AC 123 ms
52,792 KB
testcase_27 AC 173 ms
56,860 KB
testcase_28 AC 1,042 ms
65,460 KB
testcase_29 AC 369 ms
60,072 KB
testcase_30 AC 133 ms
53,888 KB
testcase_31 AC 135 ms
54,112 KB
testcase_32 AC 293 ms
57,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

class Pair {
	public Pair(int pos, int step) {
		this.pos = pos;
		this.step = step;
	}

	int pos;
	int step;
}

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();
		boolean[] visited = new boolean[N + 1];

		Queue<Pair> q = new ArrayDeque<>();
		q.add(new Pair(1, 1));
		while (!q.isEmpty()) {
			Pair p = q.poll();
			visited[p.pos] = true;
			if (p.pos == N) {
				System.out.println(p.step);
				return;
			}
			char[] binary = Integer.toBinaryString(p.pos).toCharArray();
			int move = 0;
			for (int i = 0; i < binary.length; i++) {
				if (binary[i] == '1') {
					move++;
				}
			}
			if (p.pos + move <= N && !visited[p.pos + move]) {
				q.add(new Pair(p.pos + move, p.step + 1));
			}
			if (p.pos - move > 0 && !visited[p.pos - move]) {
				q.add(new Pair(p.pos - move, p.step + 1));
			}
		}
		System.out.println(-1);

	}

}
0