結果

問題 No.3 ビットすごろく
ユーザー kusagame12kusagame12
提出日時 2023-11-06 19:22:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,485 bytes
コンパイル時間 4,239 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-09-25 23:06:57
合計ジャッジ時間 8,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,228 KB
testcase_01 AC 120 ms
41,004 KB
testcase_02 AC 109 ms
40,284 KB
testcase_03 AC 116 ms
40,652 KB
testcase_04 AC 124 ms
41,292 KB
testcase_05 AC 123 ms
41,420 KB
testcase_06 AC 122 ms
41,328 KB
testcase_07 AC 119 ms
41,240 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 115 ms
40,080 KB
testcase_13 AC 114 ms
40,136 KB
testcase_14 AC 133 ms
41,624 KB
testcase_15 AC 127 ms
41,560 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 121 ms
41,156 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 120 ms
40,972 KB
testcase_22 AC 113 ms
40,136 KB
testcase_23 AC 132 ms
41,472 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 121 ms
41,268 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 122 ms
41,308 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        boolean[] seen = new boolean[n+1];
        seen[0] = true;
        
        LinkedList<Integer> q = new LinkedList<>();
        LinkedList<Integer> next_q = new LinkedList<>();
        q.push(1);
        
        int turn = 1;
        boolean flag = false;
        while(q.size() > 0){
            
            int v = q.pop();
            
            if(v == n){
                flag = true;
                break;
            }
            
            seen[v] = true;
            
            int left = v - getBitCount(v);
            int right = v + getBitCount(v);
            
            if(left > 0 && !seen[left]){
                q.push(left);
            }
            if(right <= n && !seen[right]){
                q.push(right);
            }
            
            turn++;
            
        }
        
       
        System.out.println(flag ? turn : -1);
        
    }
    
    private static int getBitCount(int bits){
        bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555);
        bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333);
        bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f);
        bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff);
        
        return (bits & 0x0000ffff) + (bits >>16 & 0x0000ffff);
    }
   
}

0