結果

問題 No.3 ビットすごろく
ユーザー fal_rndfal_rnd
提出日時 2016-11-10 00:16:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 78,252 KB
実行使用メモリ 54,688 KB
最終ジャッジ日時 2024-07-01 08:09:45
合計ジャッジ時間 7,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,988 KB
testcase_01 AC 128 ms
53,988 KB
testcase_02 AC 126 ms
54,156 KB
testcase_03 AC 128 ms
53,696 KB
testcase_04 AC 129 ms
54,124 KB
testcase_05 AC 129 ms
54,200 KB
testcase_06 AC 113 ms
53,080 KB
testcase_07 AC 125 ms
54,088 KB
testcase_08 AC 130 ms
54,260 KB
testcase_09 AC 131 ms
53,968 KB
testcase_10 AC 134 ms
53,772 KB
testcase_11 AC 132 ms
54,104 KB
testcase_12 AC 128 ms
54,360 KB
testcase_13 AC 127 ms
54,196 KB
testcase_14 AC 137 ms
53,952 KB
testcase_15 AC 136 ms
54,168 KB
testcase_16 AC 134 ms
53,964 KB
testcase_17 AC 134 ms
53,992 KB
testcase_18 AC 133 ms
54,688 KB
testcase_19 AC 136 ms
53,932 KB
testcase_20 AC 130 ms
53,984 KB
testcase_21 AC 131 ms
53,856 KB
testcase_22 AC 135 ms
53,836 KB
testcase_23 AC 137 ms
54,072 KB
testcase_24 AC 136 ms
54,168 KB
testcase_25 AC 142 ms
54,032 KB
testcase_26 AC 128 ms
54,264 KB
testcase_27 AC 130 ms
54,060 KB
testcase_28 AC 135 ms
53,888 KB
testcase_29 AC 128 ms
54,132 KB
testcase_30 AC 128 ms
53,936 KB
testcase_31 AC 127 ms
53,900 KB
testcase_32 AC 130 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int in = Integer.parseInt(s.next());
		int[] m = new int[in];
		Queue<Integer> q = new ArrayDeque<Integer>();

		Arrays.fill(m, Integer.MAX_VALUE);
		m[0]=1;

		q.add(Integer.valueOf(0));
		while(!q.isEmpty()) {
			int i = q.poll(), d = Integer.bitCount(i+1),
				a = i-d, b = i+d;

			if(a>=0        && m[a]>m[i]+1) {
				m[a]=m[i]+1;
				q.add(a);
			}
			if(b< in && m[b]>m[i]+1) {
				m[b]=m[i]+1;
				q.add(b);
			}
		}
		if(m[in-1]==Integer.MAX_VALUE) {
			System.out.println(-1);
		}else {
			System.out.println(m[in-1]);
		}
	}
}
0