結果

問題 No.3 ビットすごろく
ユーザー ElpheltElphelt
提出日時 2016-06-20 14:11:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 2,659 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 50,960 KB
最終ジャッジ日時 2023-09-14 00:02:59
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,172 KB
testcase_01 AC 46 ms
49,624 KB
testcase_02 AC 46 ms
49,404 KB
testcase_03 AC 50 ms
49,608 KB
testcase_04 AC 48 ms
49,384 KB
testcase_05 AC 53 ms
49,356 KB
testcase_06 AC 52 ms
49,380 KB
testcase_07 AC 51 ms
49,844 KB
testcase_08 AC 52 ms
49,412 KB
testcase_09 AC 54 ms
49,692 KB
testcase_10 AC 57 ms
50,524 KB
testcase_11 AC 52 ms
49,736 KB
testcase_12 AC 52 ms
49,512 KB
testcase_13 AC 50 ms
49,408 KB
testcase_14 AC 58 ms
49,876 KB
testcase_15 AC 58 ms
50,960 KB
testcase_16 AC 59 ms
50,532 KB
testcase_17 AC 57 ms
50,376 KB
testcase_18 AC 49 ms
49,452 KB
testcase_19 AC 58 ms
50,484 KB
testcase_20 AC 47 ms
49,356 KB
testcase_21 AC 45 ms
49,144 KB
testcase_22 AC 56 ms
50,724 KB
testcase_23 AC 58 ms
50,476 KB
testcase_24 AC 60 ms
50,336 KB
testcase_25 AC 58 ms
50,428 KB
testcase_26 AC 45 ms
49,292 KB
testcase_27 AC 49 ms
49,308 KB
testcase_28 AC 57 ms
50,536 KB
testcase_29 AC 55 ms
49,876 KB
testcase_30 AC 50 ms
49,364 KB
testcase_31 AC 52 ms
49,512 KB
testcase_32 AC 60 ms
50,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;

public class Main {
	public static void main(String[] args) throws IOException {

		proconScan proScan = new proconScan(" ");
		Integer A = proScan.scanInteger1();
		Integer[] visited = new Integer[A + 1];
		Arrays.fill(visited, 0);
		visited[1] = 1;
		Queue<Integer> q = new ArrayDeque<>();
		q.add(1);
		while (!q.isEmpty()) {
			int u = q.poll();
			if (u == A) {
				System.out.println(visited[u]);
				return;
			}
			int move = Integer.bitCount(u);
			int v1 = u + move;
			if (v1 <= A && visited[v1] == 0) {
				q.add(v1);
				visited[v1] = visited[u] + 1;
			}
			int v2 = u - move;
			if (v2 > 0 && visited[v2] == 0) {
				q.add(v2);
				visited[v2] = visited[u] + 1;
			}
		}
		System.out.println(-1);
		proScan.proconEnd();
	}

}

class proconScan {
	private BufferedReader br;
	private String inLine;
	private String[] inString;
	private Integer idx;
	private String splitChar;

	public proconScan() {
		br = new BufferedReader(new InputStreamReader(System.in));
		idx = 0;
		splitChar = " ";
	}

	public proconScan(String split) {
		br = new BufferedReader(new InputStreamReader(System.in));
		idx = 0;
		splitChar = split;
	}

	public void proconEnd() throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		br.close();
	}

	public String scan() throws IOException {
		idx = 0;
		inLine = br.readLine();
		inString = inLine.split(splitChar, 0);
		return inLine;
	}

	public Integer scanInteger1() throws IOException {
		scan();
		return Integer.parseInt(inString[0]);
	}

	public String backLine() {
		return inLine;
	}

	public String nextString() {
		return inString[idx++];
	}

	public String[] getString() {
		return inString;
	}

	public Integer nextInt() {
		Integer num;
		try {
			num = Integer.parseInt(inString[idx++]);
		} catch (NumberFormatException e) {
			num = null;// TODO: handle exception
		}
		return num;
	}

	public Integer[] getInt() {
		Integer[] num = new Integer[this.getLen()];

		for (int i = 0; i < this.getLen(); i++) {
			num[i] = Integer.parseInt(inString[i]);
		}

		return num;
	}

	public Float nextFloat() {
		Float num;
		try {
			num = Float.parseFloat(inString[idx++]);
		} catch (NumberFormatException e) {
			num = null;// TODO: handle exception
		}
		return num;
	}

	public Float[] getFloat() {
		Float[] num = new Float[this.getLen()];

		for (int i = 0; i < this.getLen(); i++) {
			num[i] = Float.parseFloat(inString[i]);
		}

		return num;
	}

	public Integer getLen() {
		return inString.length;
	}

}
0