結果

問題 No.3 ビットすごろく
ユーザー 101000010101000010
提出日時 2017-05-17 04:24:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 1,964 bytes
コンパイル時間 3,659 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 47,456 KB
最終ジャッジ日時 2024-07-01 08:43:00
合計ジャッジ時間 12,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,296 KB
testcase_01 AC 118 ms
40,024 KB
testcase_02 AC 133 ms
41,280 KB
testcase_03 AC 212 ms
44,380 KB
testcase_04 AC 179 ms
42,800 KB
testcase_05 AC 256 ms
46,884 KB
testcase_06 AC 224 ms
44,716 KB
testcase_07 AC 199 ms
43,500 KB
testcase_08 AC 252 ms
46,660 KB
testcase_09 AC 280 ms
46,436 KB
testcase_10 AC 293 ms
46,744 KB
testcase_11 AC 253 ms
46,472 KB
testcase_12 AC 256 ms
47,400 KB
testcase_13 AC 206 ms
44,052 KB
testcase_14 AC 294 ms
46,768 KB
testcase_15 AC 311 ms
47,356 KB
testcase_16 AC 306 ms
47,240 KB
testcase_17 AC 241 ms
47,456 KB
testcase_18 AC 206 ms
43,560 KB
testcase_19 AC 307 ms
47,112 KB
testcase_20 AC 168 ms
43,868 KB
testcase_21 AC 129 ms
41,180 KB
testcase_22 AC 287 ms
46,664 KB
testcase_23 AC 311 ms
46,724 KB
testcase_24 AC 278 ms
47,180 KB
testcase_25 AC 303 ms
46,868 KB
testcase_26 AC 132 ms
41,052 KB
testcase_27 AC 214 ms
44,912 KB
testcase_28 AC 305 ms
46,140 KB
testcase_29 AC 268 ms
47,220 KB
testcase_30 AC 139 ms
41,256 KB
testcase_31 AC 142 ms
41,896 KB
testcase_32 AC 265 ms
46,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Queue;
import java.util.ArrayDeque;
import java.util.Scanner;

public class No003 {
    
    static Queue<P> queue = new ArrayDeque<P>();
    static boolean[] checked;
    static int N;
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        N = sc.nextInt();
        checked = new boolean[N];
        System.out.println(search());
        
    }
    
    //幅優先探索
    static int search(){
        //キューに最初のマスを追加
        P start = new P(1);
        queue.add(start);
        start.moveDistance = 1;
        while(!queue.isEmpty()){
            //キューの先頭を取り出す
            P point = queue.poll();
            //ゴールなら終了
            if(point.place == N) return point.moveDistance;
            //移動先が未チェックならキューに追加
            if(point.place + point.count1 <= N && !checked[point.place + point.count1 -1]){
                P newPoint = new P(point.place + point.count1);
                newPoint.moveDistance = point.moveDistance+1;
                queue.add(newPoint);
            }
            if(point.place - point.count1 >= 1 && !checked[point.place - point.count1 -1]){
                P newPoint = new P(point.place - point.count1);
                newPoint.moveDistance = point.moveDistance+1;
                queue.add(newPoint);
            }
        }
        //ゴールできないので-1を返す
        return -1;
    }
}

class P{
    int moveDistance;
    int place;
    int count1;
    
    P(int n){
       place = n;
       String bin = Integer.toBinaryString(n); 
       count1 = countStringInString(bin,"1");
       //移動済みチェックをつける
       No003.checked[n-1] = true;
    }
    
    static int countStringInString(String target, String searchWord) {
        return (target.length() - target.replaceAll(searchWord, "").length()) / searchWord.length();
    }
}
0