結果

問題 No.3 ビットすごろく
ユーザー tsunabittsunabit
提出日時 2019-08-11 21:39:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 883 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 58,796 KB
最終ジャッジ日時 2024-07-01 09:27:59
合計ジャッジ時間 12,390 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,168 KB
testcase_01 AC 135 ms
53,928 KB
testcase_02 AC 133 ms
53,792 KB
testcase_03 AC 218 ms
57,504 KB
testcase_04 AC 178 ms
54,804 KB
testcase_05 AC 245 ms
58,048 KB
testcase_06 AC 223 ms
57,524 KB
testcase_07 AC 187 ms
55,528 KB
testcase_08 AC 246 ms
58,268 KB
testcase_09 AC 262 ms
57,896 KB
testcase_10 AC 286 ms
58,796 KB
testcase_11 AC 270 ms
58,084 KB
testcase_12 AC 253 ms
58,120 KB
testcase_13 AC 206 ms
57,220 KB
testcase_14 AC 283 ms
57,864 KB
testcase_15 AC 306 ms
58,260 KB
testcase_16 AC 302 ms
58,576 KB
testcase_17 AC 301 ms
58,044 KB
testcase_18 AC 201 ms
57,428 KB
testcase_19 AC 309 ms
58,392 KB
testcase_20 AC 173 ms
55,036 KB
testcase_21 AC 134 ms
54,216 KB
testcase_22 AC 271 ms
57,812 KB
testcase_23 AC 296 ms
58,712 KB
testcase_24 AC 299 ms
58,024 KB
testcase_25 AC 308 ms
57,844 KB
testcase_26 AC 133 ms
54,056 KB
testcase_27 AC 214 ms
57,360 KB
testcase_28 AC 296 ms
58,184 KB
testcase_29 AC 264 ms
58,052 KB
testcase_30 AC 138 ms
54,348 KB
testcase_31 AC 147 ms
54,560 KB
testcase_32 AC 262 ms
58,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No3 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	// BFS
    	int[] step = new int[n];
    	Arrays.fill(step, 0);
    	Queue<Integer> queue = new ArrayDeque<Integer>();
    	queue.add(1);
    	while(queue.peek() != null) {
    		int t = queue.poll();
    		if(t == n) {
    			System.out.println(step[t - 1] + 1);
    			return;
    		}
    		int ido = Integer.toBinaryString(t).replaceAll("0", "").length();
    		int tugi = t + ido;
    		if(tugi <= n && step[tugi - 1] == 0) {
    			step[tugi - 1] = step[t - 1] + 1;
    			queue.add(tugi);
    		}
    		tugi = t - ido;
    		if(1 <= tugi && step[tugi -1] == 0) {
    			step[tugi - 1] = step[t - 1] + 1;
    			queue.add(tugi);
    		}
    	}
    	System.out.println(-1);
    }
}
0