結果

問題 No.3 ビットすごろく
ユーザー jp_stejp_ste
提出日時 2016-02-12 04:10:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 98,320 KB
最終ジャッジ日時 2024-09-22 04:04:50
合計ジャッジ時間 18,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 129 ms
54,128 KB
testcase_03 AC 134 ms
55,192 KB
testcase_04 WA -
testcase_05 AC 178 ms
56,944 KB
testcase_06 AC 146 ms
56,084 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 174 ms
56,500 KB
testcase_13 AC 142 ms
54,104 KB
testcase_14 AC 461 ms
67,508 KB
testcase_15 AC 1,354 ms
89,604 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 133 ms
53,880 KB
testcase_22 AC 466 ms
67,432 KB
testcase_23 AC 1,661 ms
98,044 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 130 ms
53,700 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = -1;
		
		Queue<Node> q = new LinkedList<>();
		q.add(new Node(1,1));
		
		while(!q.isEmpty()) {
			Node v = q.poll();
			
			if(v.number == N) {
				ans = v.number;
				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