結果

問題 No.3 ビットすごろく
ユーザー jp_stejp_ste
提出日時 2016-02-12 17:05:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,283 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-07-01 07:45:45
合計ジャッジ時間 8,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,088 KB
testcase_01 AC 133 ms
41,444 KB
testcase_02 AC 131 ms
41,256 KB
testcase_03 AC 133 ms
41,364 KB
testcase_04 AC 133 ms
41,452 KB
testcase_05 AC 134 ms
41,520 KB
testcase_06 AC 135 ms
41,932 KB
testcase_07 AC 123 ms
40,396 KB
testcase_08 AC 134 ms
41,464 KB
testcase_09 AC 145 ms
41,572 KB
testcase_10 AC 143 ms
41,616 KB
testcase_11 AC 141 ms
41,592 KB
testcase_12 AC 136 ms
41,496 KB
testcase_13 AC 121 ms
41,588 KB
testcase_14 AC 141 ms
41,856 KB
testcase_15 AC 140 ms
42,020 KB
testcase_16 AC 140 ms
41,836 KB
testcase_17 AC 141 ms
41,684 KB
testcase_18 AC 131 ms
41,888 KB
testcase_19 AC 138 ms
41,668 KB
testcase_20 AC 118 ms
41,444 KB
testcase_21 AC 127 ms
41,232 KB
testcase_22 AC 139 ms
41,632 KB
testcase_23 AC 141 ms
41,688 KB
testcase_24 AC 140 ms
41,808 KB
testcase_25 AC 141 ms
41,808 KB
testcase_26 AC 132 ms
41,264 KB
testcase_27 AC 134 ms
41,548 KB
testcase_28 AC 143 ms
41,756 KB
testcase_29 AC 142 ms
41,624 KB
testcase_30 AC 133 ms
41,308 KB
testcase_31 AC 131 ms
41,428 KB
testcase_32 AC 133 ms
41,764 KB
権限があれば一括ダウンロードができます

ソースコード

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.steps;
                break;
            }
            
            if(flag[v.number]) continue;;
            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