結果

問題 No.3 ビットすごろく
ユーザー ぴろずぴろず
提出日時 2014-12-21 01:02:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 1,583 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 79,220 KB
実行使用メモリ 56,356 KB
最終ジャッジ日時 2024-07-01 07:09:53
合計ジャッジ時間 8,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,816 KB
testcase_01 AC 134 ms
54,112 KB
testcase_02 AC 134 ms
53,976 KB
testcase_03 AC 140 ms
53,712 KB
testcase_04 AC 139 ms
53,784 KB
testcase_05 AC 146 ms
54,116 KB
testcase_06 AC 141 ms
54,016 KB
testcase_07 AC 139 ms
54,120 KB
testcase_08 AC 148 ms
53,864 KB
testcase_09 AC 151 ms
56,004 KB
testcase_10 AC 150 ms
56,188 KB
testcase_11 AC 148 ms
54,176 KB
testcase_12 AC 146 ms
54,192 KB
testcase_13 AC 138 ms
54,216 KB
testcase_14 AC 152 ms
56,188 KB
testcase_15 AC 157 ms
55,924 KB
testcase_16 AC 154 ms
55,980 KB
testcase_17 AC 154 ms
56,356 KB
testcase_18 AC 142 ms
54,080 KB
testcase_19 AC 153 ms
56,012 KB
testcase_20 AC 138 ms
53,784 KB
testcase_21 AC 134 ms
53,992 KB
testcase_22 AC 152 ms
56,260 KB
testcase_23 AC 152 ms
56,240 KB
testcase_24 AC 153 ms
56,292 KB
testcase_25 AC 153 ms
56,032 KB
testcase_26 AC 136 ms
53,896 KB
testcase_27 AC 138 ms
54,024 KB
testcase_28 AC 153 ms
56,000 KB
testcase_29 AC 148 ms
54,216 KB
testcase_30 AC 135 ms
53,948 KB
testcase_31 AC 136 ms
53,980 KB
testcase_32 AC 149 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no003;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Graph g = new Graph(n);
		for(int i=0;i<n;i++) {
			int bc = Integer.bitCount(i+1);
			if (i - bc >= 0) {
				g.addEdge(i, i-bc, 1);
			}
			if (i + bc < n) {
				g.addEdge(i, i+bc, 1);
			}
		}
		int dist = g.minDistQueue(0)[n-1];
		System.out.println(dist == Graph.INF ? -1 : dist + 1);
	}
}
class Graph {
	public static final int INF = 1<<29;
	int n;
	ArrayList<Edge>[] graph;

	@SuppressWarnings("unchecked")
	public Graph(int n) {
		this.n = n;
		this.graph = new ArrayList[n];
		for(int i=0;i<n;i++) {
			graph[i] = new ArrayList<Edge>();
		}
	}

	public void addBidirectionalEdge(int from,int to,int cost) {
		addEdge(from,to,cost);
		addEdge(to,from,cost);
	}
	public void addEdge(int from,int to,int cost) {
		graph[from].add(new Edge(to, cost));
	}

	//O(E) all cost is 0 or 1
	public int[] minDistQueue(int s) {
		int[] d = new int[n];
		Arrays.fill(d, INF);
		ArrayDeque<Integer> q = new ArrayDeque<Integer>();
		q.add(s);
		d[s] = 0;
		while(!q.isEmpty()) {
			int v = q.pollFirst();
			for(Edge e:graph[v]) {
				int u = e.to;
				if (d[v] + e.cost < d[u]) {
					d[u] = d[v] + e.cost;
					if (e.cost == 0) {
						q.addFirst(u);
					}else{
						q.addLast(u);
					}
				}
			}
		}
		return d;
	}

	class Edge {
		int to;
		int cost;
		public Edge(int to,int cost) {
			this.to = to;
			this.cost = cost;
		}
	}
}
0