結果

問題 No.3 ビットすごろく
ユーザー core123core123
提出日時 2019-04-17 13:48:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 1,395 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 79,284 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2024-07-01 09:18:09
合計ジャッジ時間 7,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,392 KB
testcase_01 AC 127 ms
41,600 KB
testcase_02 AC 133 ms
41,008 KB
testcase_03 AC 135 ms
41,452 KB
testcase_04 AC 135 ms
41,380 KB
testcase_05 AC 135 ms
41,632 KB
testcase_06 AC 135 ms
41,324 KB
testcase_07 AC 134 ms
41,612 KB
testcase_08 AC 141 ms
41,476 KB
testcase_09 AC 140 ms
41,568 KB
testcase_10 AC 126 ms
40,456 KB
testcase_11 AC 135 ms
41,452 KB
testcase_12 AC 142 ms
41,652 KB
testcase_13 AC 133 ms
41,472 KB
testcase_14 AC 139 ms
42,112 KB
testcase_15 AC 138 ms
41,740 KB
testcase_16 AC 143 ms
41,780 KB
testcase_17 AC 139 ms
41,796 KB
testcase_18 AC 140 ms
41,188 KB
testcase_19 AC 142 ms
41,680 KB
testcase_20 AC 133 ms
41,184 KB
testcase_21 AC 132 ms
41,316 KB
testcase_22 AC 141 ms
41,676 KB
testcase_23 AC 140 ms
42,188 KB
testcase_24 AC 141 ms
41,784 KB
testcase_25 AC 139 ms
41,720 KB
testcase_26 AC 117 ms
39,880 KB
testcase_27 AC 135 ms
41,528 KB
testcase_28 AC 139 ms
41,668 KB
testcase_29 AC 140 ms
41,388 KB
testcase_30 AC 132 ms
41,600 KB
testcase_31 AC 134 ms
41,336 KB
testcase_32 AC 137 ms
41,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] ans=new int[n];
		Arrays.fill(ans,Integer.MAX_VALUE);
		Deque<Pair> deq=new ArrayDeque<>();
		deq.add(new Pair(0,0));
		while(deq.size()>0){
			Pair p=deq.removeFirst();
			//put(p);
			//put(Arrays.toString(ans));
			if(ans[p.x]>p.y){
				ans[p.x]=p.y;
				int index=p.x-Integer.bitCount(p.x+1);
				if(index>=0&&index<n)deq.addLast(new Pair(index,p.y+1));
				index=p.x+Integer.bitCount(p.x+1);
				if(index>=0&&index<n)deq.addLast(new Pair(index,p.y+1));
			}
		}
		if(ans[n-1]==Integer.MAX_VALUE){
			put(-1);
		}else{
			put(ans[n-1]+1);
		}
		
	}
	public static class Pair{
		final int x,y;
		Pair(int x,int y){
			this.x=x;
			this.y=y;
		}
		@Override
		public String toString(){
			return String.format("Pair(%d,%d)",x,y);
		}
	}
	
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0