結果

問題 No.3 ビットすごろく
ユーザー YamaKasaYamaKasa
提出日時 2018-06-08 02:53:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 1,416 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 57,464 KB
最終ジャッジ日時 2024-07-01 09:03:05
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,964 KB
testcase_01 AC 139 ms
54,040 KB
testcase_02 AC 133 ms
53,760 KB
testcase_03 AC 148 ms
54,456 KB
testcase_04 AC 153 ms
54,636 KB
testcase_05 AC 165 ms
56,280 KB
testcase_06 AC 148 ms
56,356 KB
testcase_07 AC 152 ms
54,500 KB
testcase_08 AC 171 ms
56,472 KB
testcase_09 AC 178 ms
57,464 KB
testcase_10 AC 177 ms
57,072 KB
testcase_11 AC 174 ms
57,000 KB
testcase_12 AC 151 ms
56,380 KB
testcase_13 AC 146 ms
54,316 KB
testcase_14 AC 167 ms
57,008 KB
testcase_15 AC 169 ms
56,892 KB
testcase_16 AC 181 ms
57,148 KB
testcase_17 AC 183 ms
57,132 KB
testcase_18 AC 155 ms
54,076 KB
testcase_19 AC 182 ms
56,896 KB
testcase_20 AC 143 ms
53,972 KB
testcase_21 AC 138 ms
54,172 KB
testcase_22 AC 167 ms
56,708 KB
testcase_23 AC 168 ms
56,784 KB
testcase_24 AC 179 ms
57,448 KB
testcase_25 AC 180 ms
57,360 KB
testcase_26 AC 136 ms
53,984 KB
testcase_27 AC 154 ms
54,540 KB
testcase_28 AC 181 ms
57,084 KB
testcase_29 AC 174 ms
56,772 KB
testcase_30 AC 138 ms
54,240 KB
testcase_31 AC 136 ms
54,460 KB
testcase_32 AC 167 ms
56,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		scan.close();

		// マスの状態 0: 訪れていない 1: 訪れた
		int []color = new int[N];
		Arrays.fill(color, 0);
		color[0] = 1;

		// 次に訪問すべきマス
		Queue<Integer> queue = new ArrayDeque<Integer>();
		queue.add(1);

		// 1からの距離
		int []d = new int[N];
		Arrays.fill(d, 0);
		d[0] = 1;
		while(queue.size() > 0){
			// 訪問しているマス
			int k = queue.poll();
			// 移動可能な距離
			int t = bitNum(k);
			// 移動するマス
			int a1 = k + t;
			int a2 = k - t;
			//System.out.println(a1 + " " + a2);
			if(a1 <= N) {
				if(color[a1 - 1] == 0){
					color[a1 - 1] = 1;
					d[a1 - 1] = d[k - 1] + 1;
					queue.add(a1);
				}
			}
			if(a2 >= 2) {
				if(color[a2 - 1] == 0) {
					color[a2 - 1] = 1;
					d[a2 - 1] = d[k - 1] + 1;
					queue.add(a2);
				}
			}
			if(color[N - 1] == 1) {
				System.out.println(d[N - 1]);
				System.exit(0);
			}

		}
		System.out.println(-1);

	}
	public static int bitNum(int a) {
		int cnt = 0;
		String binary = Integer.toBinaryString(a);
		int l = binary.length();
		for(int j = 0; j < l; j++) {
			if(binary.substring(j, j+1).equals("1")) {
				cnt ++;
			}
		}
		return cnt;
	}
}
0