結果

問題 No.3 ビットすごろく
ユーザー jp_stejp_ste
提出日時 2016-02-12 04:17:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,724 ms / 5,000 ms
コード長 1,092 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 98,368 KB
最終ジャッジ日時 2024-07-01 07:44:22
合計ジャッジ時間 18,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,996 KB
testcase_01 AC 132 ms
53,964 KB
testcase_02 AC 133 ms
54,084 KB
testcase_03 AC 149 ms
56,340 KB
testcase_04 AC 145 ms
54,404 KB
testcase_05 AC 177 ms
56,652 KB
testcase_06 AC 148 ms
55,852 KB
testcase_07 AC 146 ms
53,816 KB
testcase_08 AC 173 ms
57,116 KB
testcase_09 AC 285 ms
64,868 KB
testcase_10 AC 573 ms
67,016 KB
testcase_11 AC 217 ms
60,792 KB
testcase_12 AC 177 ms
56,692 KB
testcase_13 AC 146 ms
54,140 KB
testcase_14 AC 471 ms
67,400 KB
testcase_15 AC 1,397 ms
89,824 KB
testcase_16 AC 655 ms
67,412 KB
testcase_17 AC 1,293 ms
82,004 KB
testcase_18 AC 146 ms
53,924 KB
testcase_19 AC 1,720 ms
98,368 KB
testcase_20 AC 137 ms
54,148 KB
testcase_21 AC 136 ms
53,616 KB
testcase_22 AC 479 ms
66,928 KB
testcase_23 AC 1,724 ms
97,584 KB
testcase_24 AC 1,720 ms
97,904 KB
testcase_25 AC 1,416 ms
89,428 KB
testcase_26 AC 132 ms
53,660 KB
testcase_27 AC 149 ms
55,744 KB
testcase_28 AC 597 ms
67,304 KB
testcase_29 AC 212 ms
60,652 KB
testcase_30 AC 136 ms
54,148 KB
testcase_31 AC 136 ms
54,124 KB
testcase_32 AC 202 ms
59,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	static int N;
	static int ans = Integer.MAX_VALUE;
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		N = scan.nextInt();
		scan.close();
		boolean flag[] = new boolean[N+1];
		
		Queue<Node> q = new LinkedList<>();
		q.add(new Node(1,1));
		
		while(!q.isEmpty()) {
			Node v = q.poll();
			
			if(v.number == N) {
				ans = Math.min(ans,  v.steps);
				continue;
			}
			
			flag[v.number] = true;
			
			int nextRight = v.number + (Integer.bitCount(v.number));
			if(nextRight <= N && !flag[nextRight]) { 
				q.add(new Node(nextRight, v.steps+1));
			}
			
			int nextLeft = v.number - (Integer.bitCount(v.number));
			if(nextLeft >= 1 && !flag[nextLeft]) { 
				q.add(new Node(nextLeft, v.steps+1));
			}
		}
		
		if(ans == Integer.MAX_VALUE) {
			System.out.println("-1");
		} else { 
			System.out.println(ans);
		}
			
	}
}

class Node {
	int number;
	int steps;
	Node(int number , int steps) {
		this.number = number;
		this.steps = steps;
	}
}
0