結果

問題 No.3 ビットすごろく
ユーザー uafr_csuafr_cs
提出日時 2015-05-29 01:02:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 78,456 KB
実行使用メモリ 42,316 KB
最終ジャッジ日時 2024-07-01 07:23:07
合計ジャッジ時間 8,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,212 KB
testcase_01 AC 134 ms
41,432 KB
testcase_02 AC 133 ms
41,240 KB
testcase_03 AC 136 ms
41,532 KB
testcase_04 AC 138 ms
41,696 KB
testcase_05 AC 139 ms
41,716 KB
testcase_06 AC 136 ms
41,336 KB
testcase_07 AC 137 ms
41,232 KB
testcase_08 AC 137 ms
41,552 KB
testcase_09 AC 138 ms
41,756 KB
testcase_10 AC 144 ms
41,764 KB
testcase_11 AC 136 ms
41,888 KB
testcase_12 AC 137 ms
41,652 KB
testcase_13 AC 138 ms
41,460 KB
testcase_14 AC 144 ms
41,856 KB
testcase_15 AC 128 ms
41,936 KB
testcase_16 AC 143 ms
42,152 KB
testcase_17 AC 145 ms
42,316 KB
testcase_18 AC 137 ms
41,312 KB
testcase_19 AC 142 ms
42,180 KB
testcase_20 AC 139 ms
41,244 KB
testcase_21 AC 133 ms
41,224 KB
testcase_22 AC 143 ms
41,836 KB
testcase_23 AC 142 ms
41,888 KB
testcase_24 AC 144 ms
41,676 KB
testcase_25 AC 142 ms
42,196 KB
testcase_26 AC 134 ms
41,496 KB
testcase_27 AC 139 ms
41,532 KB
testcase_28 AC 145 ms
41,956 KB
testcase_29 AC 138 ms
41,752 KB
testcase_30 AC 131 ms
41,588 KB
testcase_31 AC 134 ms
41,376 KB
testcase_32 AC 138 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		int[] min_costs = new int[N + 1];
		Arrays.fill(min_costs, Integer.MAX_VALUE);
		min_costs[1] = 1;
		
		Queue<Integer> queue = new LinkedList<Integer>();
		queue.add(1);
		
		while(!queue.isEmpty()){
			final int pos = queue.poll();
			final int pops = Integer.bitCount(pos);
			
			
			for(int move : new int[]{-pops, pops}){
				final int next_pos = pos + move;
				
				if(next_pos < 1 || next_pos > N){
					continue;
				}else if(min_costs[next_pos] <= min_costs[pos] + 1){
					continue;
				}else{
					min_costs[next_pos] = min_costs[pos] + 1;
					queue.add(next_pos);
				}
				
			}
		}
		
		System.out.println(min_costs[N] == Integer.MAX_VALUE ? -1 : min_costs[N]);
		
		
	}
	
}
0