結果
| 問題 | No.3 ビットすごろく |
| コンテスト | |
| ユーザー |
kohaku_kohaku
|
| 提出日時 | 2016-12-12 00:14:51 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 931 bytes |
| コンパイル時間 | 2,243 ms |
| コンパイル使用メモリ | 78,616 KB |
| 実行使用メモリ | 54,444 KB |
| 最終ジャッジ日時 | 2024-11-29 04:08:48 |
| 合計ジャッジ時間 | 7,276 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 WA * 10 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
boolean [] boo = new boolean [N+1];
int [] c = new int [N+1];
for(int i=2; i<=N; i++){
c[i]=Integer.MAX_VALUE;
}
c[1]=1;
Queue<Integer> q = new LinkedList<>();
q.add(1);
while(!q.isEmpty()){
int t = q.poll();
int p = Integer.bitCount(t);
int b = t-p;
int f = t+p;
if(b>0){
c[b]=Math.min(c[b],c[t]+1);
if(boo[b]==false)q.add(b);
boo[b]=true;
}
if(f<=N){
c[f]=Math.min(c[f],c[t]+1);
if(boo[f]==false)q.add(f);
boo[f]=true;
}
}
if(c[N]==0)c[N]=-1;
System.out.println(c[N]);
}
}
kohaku_kohaku