結果

問題 No.3 ビットすごろく
ユーザー GBGB
提出日時 2018-04-16 13:22:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,430 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-27 04:00:25
合計ジャッジ時間 7,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,992 KB
testcase_01 AC 133 ms
54,336 KB
testcase_02 AC 135 ms
54,488 KB
testcase_03 AC 137 ms
54,268 KB
testcase_04 AC 135 ms
54,152 KB
testcase_05 AC 135 ms
54,400 KB
testcase_06 AC 136 ms
54,248 KB
testcase_07 AC 133 ms
54,124 KB
testcase_08 AC 133 ms
54,204 KB
testcase_09 AC 138 ms
54,232 KB
testcase_10 AC 144 ms
54,412 KB
testcase_11 AC 138 ms
53,856 KB
testcase_12 AC 134 ms
54,116 KB
testcase_13 AC 134 ms
54,104 KB
testcase_14 AC 140 ms
54,208 KB
testcase_15 AC 140 ms
54,316 KB
testcase_16 AC 142 ms
53,804 KB
testcase_17 AC 149 ms
54,368 KB
testcase_18 AC 140 ms
54,056 KB
testcase_19 AC 148 ms
53,716 KB
testcase_20 AC 132 ms
54,288 KB
testcase_21 AC 131 ms
54,360 KB
testcase_22 AC 140 ms
54,204 KB
testcase_23 AC 146 ms
54,080 KB
testcase_24 AC 144 ms
53,900 KB
testcase_25 AC 137 ms
54,008 KB
testcase_26 WA -
testcase_27 AC 131 ms
54,116 KB
testcase_28 AC 141 ms
54,320 KB
testcase_29 AC 134 ms
54,000 KB
testcase_30 AC 132 ms
53,948 KB
testcase_31 AC 130 ms
54,156 KB
testcase_32 AC 135 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
  public static void main(String[] args) throws IOException{
    Scanner scan=new Scanner(System.in);

    int n=scan.nextInt();
    if(n==1){
      System.out.println(0);
      return;
    }

    Queue<Integer> queue=new ArrayDeque<Integer>();//空のキュー
    int[] dist=new int[n+1];//訪問したかどうかの判別する配列
    Arrays.fill(dist,Integer.MAX_VALUE);//初期化

    queue.offer(1);//キューに最初の1のマスを格納する
    dist[1]=1;//1のマスを訪問済みにする
    while(!queue.isEmpty()){
      int now=queue.poll();
      int bit=f(now);//bitが立っている数を数える

      //探索が完了したら出力して終了
      if(now+bit==n){
        System.out.println(dist[now]+1);
        return;
      }
      //未訪問で左に移動できる場合
      if(now-bit>0 && dist[now-bit]==Integer.MAX_VALUE){
        dist[now-bit]=dist[now]+1;
        queue.offer(now-bit);
      }
      //未訪問で右に移動できる場合
      if(now+bit<n && dist[now+bit]==Integer.MAX_VALUE){
        dist[now+bit]=dist[now]+1;//次のマスを訪問済みにする
        queue.offer(now+bit);//次のマスをキューに格納する
      }
    }
    System.out.println(-1);
  }
  static int f(int x){
    int count=0;
    while(x>0){
      if(x%2==1){
        count++;
      }
      x/=2;
    }
    return count;
  }
}
0