結果

問題 No.3 ビットすごろく
ユーザー mazeppa1108mazeppa1108
提出日時 2015-05-31 18:30:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 2,934 ms
コンパイル使用メモリ 77,360 KB
実行使用メモリ 55,816 KB
最終ジャッジ日時 2024-07-06 13:04:04
合計ジャッジ時間 7,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
52,460 KB
testcase_01 AC 108 ms
53,788 KB
testcase_02 AC 117 ms
53,780 KB
testcase_03 AC 112 ms
52,988 KB
testcase_04 AC 116 ms
53,708 KB
testcase_05 AC 121 ms
54,044 KB
testcase_06 AC 121 ms
53,864 KB
testcase_07 AC 114 ms
53,952 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
53,720 KB
testcase_13 AC 105 ms
52,396 KB
testcase_14 AC 127 ms
53,908 KB
testcase_15 AC 125 ms
54,136 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 117 ms
53,716 KB
testcase_19 WA -
testcase_20 AC 114 ms
53,660 KB
testcase_21 AC 112 ms
53,660 KB
testcase_22 AC 131 ms
53,924 KB
testcase_23 AC 130 ms
53,724 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 98 ms
52,740 KB
testcase_31 AC 110 ms
54,044 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

import javax.naming.directory.SearchResult;

public class Main2 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] visited = new boolean[n];
		visited[0] = true;
		int searchList[] = new int[n];
		int countTable[] = new int[n];
		countTable[1] = 1;
		searchList[1] = 1;
		int j = 2;
		int k = 1;
		while (searchList[k] != 0) {
			//System.out.println("new Root");
			int move = 0;
			int i = searchList[k];
			int count = countTable[k];
			while (i <= n) {
				visited[i] = true;
				move = Integer.bitCount(i);
				if (visited[i - move]) {
					i += move;
					count++;
					//System.out.println(i);
					if (i == n) {
						System.out.println(count);
						return;
					}
				} else {
					if (i - move >= 0) {
						searchList[j] = (i - move);
						//System.out.println("add SearchList");
						//System.out.println(i-move);
						visited[i - move] = true;
						countTable[j] = count + 1;
						j++;
					}
				}
			}
			k++;
		}
		System.out.println("-1");
		return;
	}
}
0