結果

問題 No.3 ビットすごろく
ユーザー holegumaholeguma
提出日時 2015-07-26 02:17:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 775 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 37,224 KB
最終ジャッジ日時 2024-07-01 07:27:57
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,000 KB
testcase_01 AC 52 ms
36,936 KB
testcase_02 AC 53 ms
36,992 KB
testcase_03 AC 55 ms
36,904 KB
testcase_04 AC 54 ms
36,512 KB
testcase_05 AC 55 ms
37,160 KB
testcase_06 AC 55 ms
36,848 KB
testcase_07 AC 54 ms
37,008 KB
testcase_08 AC 56 ms
37,072 KB
testcase_09 AC 55 ms
37,124 KB
testcase_10 AC 57 ms
37,204 KB
testcase_11 AC 56 ms
37,224 KB
testcase_12 AC 54 ms
36,816 KB
testcase_13 AC 53 ms
37,200 KB
testcase_14 AC 58 ms
36,748 KB
testcase_15 AC 58 ms
36,972 KB
testcase_16 AC 58 ms
36,988 KB
testcase_17 AC 58 ms
36,976 KB
testcase_18 AC 54 ms
36,952 KB
testcase_19 AC 58 ms
36,880 KB
testcase_20 AC 53 ms
36,628 KB
testcase_21 AC 53 ms
36,600 KB
testcase_22 AC 56 ms
36,780 KB
testcase_23 AC 58 ms
37,140 KB
testcase_24 AC 58 ms
37,200 KB
testcase_25 AC 58 ms
36,992 KB
testcase_26 AC 53 ms
37,028 KB
testcase_27 AC 55 ms
37,152 KB
testcase_28 AC 59 ms
36,844 KB
testcase_29 AC 56 ms
36,964 KB
testcase_30 AC 51 ms
37,012 KB
testcase_31 AC 53 ms
36,784 KB
testcase_32 AC 55 ms
37,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;
import java.util.Deque;
import java.util.ArrayDeque;

class Main{
final static int INF=Integer.MAX_VALUE/2;
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null){
int t=Integer.parseInt(line);
int[] map=new int[t+1];
Arrays.fill(map,INF);
Deque<Integer> que=new ArrayDeque<Integer>();
map[1]=1;
que.offerLast(1);
while(que.peekFirst()!=null){
int n=que.pollFirst();
int noo=Integer.bitCount(n);
if(n-noo>=1&&map[n-noo]>map[n]+1){
map[n-noo]=map[n]+1;
que.offerLast(n-noo);
}
if(n+noo<=t&&map[n+noo]>map[n]+1){
map[n+noo]=map[n]+1;
que.offerLast(n+noo);
}
}
System.out.println(map[t]==INF?-1:map[t]);
}
}
}
0