結果

問題 No.3 ビットすごろく
ユーザー jp_stejp_ste
提出日時 2016-02-12 04:15:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 78,220 KB
実行使用メモリ 98,180 KB
最終ジャッジ日時 2024-09-22 04:05:34
合計ジャッジ時間 18,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,008 KB
testcase_01 AC 116 ms
52,848 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 136 ms
54,196 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 138 ms
54,356 KB
testcase_08 AC 164 ms
57,064 KB
testcase_09 AC 261 ms
64,852 KB
testcase_10 AC 547 ms
67,196 KB
testcase_11 AC 206 ms
61,312 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 620 ms
67,476 KB
testcase_17 AC 1,223 ms
82,224 KB
testcase_18 AC 125 ms
53,088 KB
testcase_19 AC 1,667 ms
97,908 KB
testcase_20 AC 133 ms
54,372 KB
testcase_21 AC 115 ms
52,996 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,661 ms
98,180 KB
testcase_25 AC 1,370 ms
89,844 KB
testcase_26 AC 130 ms
54,360 KB
testcase_27 AC 140 ms
56,296 KB
testcase_28 AC 583 ms
67,544 KB
testcase_29 AC 206 ms
60,944 KB
testcase_30 AC 130 ms
54,248 KB
testcase_31 AC 128 ms
53,888 KB
testcase_32 AC 195 ms
59,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;
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();
		boolean flag[] = new boolean[N+1];
		int ans = Integer.MAX_VALUE;
		
		Queue<Node> q = new LinkedList<>();
		q.add(new Node(1,1));
		
		while(!q.isEmpty()) {
			Node v = q.poll();
			
			if(v.number == N) {
				ans = v.steps;
				break;
			}
			
			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));
			}
		}
		
		System.out.println(ans);
	}
}

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