結果

問題 No.3 ビットすごろく
ユーザー springspring
提出日時 2019-06-13 16:31:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 5,000 ms
コード長 1,332 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 56,564 KB
最終ジャッジ日時 2024-07-01 09:22:53
合計ジャッジ時間 8,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,948 KB
testcase_01 AC 133 ms
54,000 KB
testcase_02 AC 135 ms
54,068 KB
testcase_03 AC 152 ms
54,360 KB
testcase_04 AC 144 ms
54,452 KB
testcase_05 AC 168 ms
54,272 KB
testcase_06 AC 164 ms
54,412 KB
testcase_07 AC 148 ms
54,336 KB
testcase_08 AC 173 ms
54,136 KB
testcase_09 AC 167 ms
56,564 KB
testcase_10 AC 173 ms
56,244 KB
testcase_11 AC 173 ms
54,520 KB
testcase_12 AC 173 ms
54,296 KB
testcase_13 AC 151 ms
53,908 KB
testcase_14 AC 174 ms
56,240 KB
testcase_15 AC 178 ms
56,340 KB
testcase_16 AC 178 ms
56,548 KB
testcase_17 AC 174 ms
56,124 KB
testcase_18 AC 167 ms
54,288 KB
testcase_19 AC 180 ms
56,424 KB
testcase_20 AC 144 ms
54,260 KB
testcase_21 AC 137 ms
54,092 KB
testcase_22 AC 177 ms
56,392 KB
testcase_23 AC 175 ms
56,468 KB
testcase_24 AC 177 ms
56,412 KB
testcase_25 AC 178 ms
56,424 KB
testcase_26 AC 133 ms
53,968 KB
testcase_27 AC 148 ms
54,140 KB
testcase_28 AC 175 ms
56,128 KB
testcase_29 AC 173 ms
54,536 KB
testcase_30 AC 135 ms
53,828 KB
testcase_31 AC 136 ms
53,816 KB
testcase_32 AC 172 ms
54,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		sc.close();
		int[] list = new int[N+10];
		int count = 1;
		int i=0;
		ArrayList<Integer> toDo = new ArrayList<Integer>();
		ArrayList<Integer> queue= new ArrayList<Integer>();
		toDo.add(1);
		list[1] = 1;
		while(i<1){
			toDo.addAll(queue);
			queue.clear();
			count+= 1;
			for(int searchNum : toDo){
				String two = Integer.toBinaryString(searchNum);
				two = two.replace("0", "");
				int change = two.length();
				if(searchNum-change>0){
					if(list[searchNum-change]==0){
						list[searchNum-change]=count;
						queue.add(searchNum-change);
					}else{
						list[searchNum-change]=Math.min(list[searchNum-change], count);
					}
				}
				if(searchNum+change<=N){
					if(list[searchNum+change]==0){
						list[searchNum+change]=count;
						queue.add(searchNum+change);
					}else{
						list[searchNum+change]=Math.min(list[searchNum+change], count);
					}
				}
				if(list[N]!=0){
					break;
				}

			}
			toDo.clear();
			if(list[N]!=0){
				System.out.println(list[N]);
				i+=1;
				break;
			}
			if(queue.isEmpty()&&toDo.isEmpty()){
				System.out.println(-1);
				i+=1;
				break;
			}

		}

 	}// mainmethod

} // class
0