結果

問題 No.3 ビットすごろく
ユーザー villachvillach
提出日時 2017-09-19 00:47:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 297 ms / 5,000 ms
コード長 1,052 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 78,592 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-07-01 08:49:31
合計ジャッジ時間 11,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,172 KB
testcase_01 AC 128 ms
53,908 KB
testcase_02 AC 133 ms
54,012 KB
testcase_03 AC 156 ms
54,244 KB
testcase_04 AC 158 ms
54,520 KB
testcase_05 AC 196 ms
54,020 KB
testcase_06 AC 161 ms
54,144 KB
testcase_07 AC 157 ms
54,256 KB
testcase_08 AC 174 ms
54,076 KB
testcase_09 AC 224 ms
54,176 KB
testcase_10 AC 254 ms
54,200 KB
testcase_11 AC 211 ms
54,096 KB
testcase_12 AC 192 ms
54,120 KB
testcase_13 AC 151 ms
54,160 KB
testcase_14 AC 248 ms
54,184 KB
testcase_15 AC 295 ms
54,016 KB
testcase_16 AC 277 ms
54,104 KB
testcase_17 AC 291 ms
54,196 KB
testcase_18 AC 153 ms
54,292 KB
testcase_19 AC 297 ms
54,208 KB
testcase_20 AC 143 ms
54,244 KB
testcase_21 AC 130 ms
54,060 KB
testcase_22 AC 253 ms
54,080 KB
testcase_23 AC 295 ms
53,984 KB
testcase_24 AC 297 ms
54,088 KB
testcase_25 AC 291 ms
54,240 KB
testcase_26 AC 131 ms
53,832 KB
testcase_27 AC 151 ms
53,816 KB
testcase_28 AC 271 ms
54,400 KB
testcase_29 AC 213 ms
54,096 KB
testcase_30 AC 134 ms
54,132 KB
testcase_31 AC 134 ms
54,132 KB
testcase_32 AC 203 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.LinkedList;
import java.util.Scanner;

public class N3 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		LinkedList<Integer> queue = new LinkedList<Integer>();
		LinkedList<Integer> visited = new LinkedList<Integer>();
		int i = 1;
		int a, b, dist;
		
		for(int j = 0;j <= n;++j){
			visited.add(0);
		}
		
		if(n == 1){
			System.out.println(1);
			return;
		}
		
		while(true){
			dist = visited.get(i);
			a = i - countBin(i);
			b = i + countBin(i);
			if(a > 0 && a <= n && visited.get(a) == 0){
				visited.set(a, dist + 1);
				queue.offer(a);
			}
			if(b > 0 && b <= n && visited.get(b) == 0){
				visited.set(b, dist + 1);
				queue.offer(b);
			}
			
			if(a == n || b == n){
				System.out.println(dist + 2);
				return;
			}
			
			if(queue.size() == 0){
				System.out.println(-1);
				return;
			}
			i = queue.poll();
		}
	}
	
	public static int countBin(int x){
		int i = 0;
		while(x != 0){
			i += x % 2;
			x /= 2;
		}
		return i;
	}
}
0