g0801_0900.s0815_bus_routes.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0801_0900.s0815_bus_routes;
// #Hard #Array #Hash_Table #Breadth_First_Search
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Queue;
import java.util.Set;
@SuppressWarnings("unchecked")
public class Solution {
public int numBusesToDestination(int[][] routes, int source, int target) {
if (source == target) {
return 0;
}
Set targetRoutes = new HashSet<>();
Queue queue = new ArrayDeque<>();
boolean[] taken = new boolean[routes.length];
List[] graph = buildGraph(routes, source, target, queue, targetRoutes, taken);
if (targetRoutes.isEmpty()) {
return -1;
}
int bus = 1;
while (!queue.isEmpty()) {
int size = queue.size();
for (int i = 0; i < size; i++) {
int route = queue.poll();
if (targetRoutes.contains(route)) {
return bus;
}
for (int nextRoute : graph[route]) {
if (!taken[nextRoute]) {
queue.offer(nextRoute);
taken[nextRoute] = true;
}
}
}
bus++;
}
return -1;
}
private List[] buildGraph(
int[][] routes,
int source,
int target,
Queue queue,
Set targetRoutes,
boolean[] taken) {
int len = routes.length;
ArrayList[] graph = new ArrayList[len];
for (int i = 0; i < len; i++) {
Arrays.sort(routes[i]);
graph[i] = new ArrayList();
int id = Arrays.binarySearch(routes[i], source);
if (id >= 0) {
queue.offer(i);
taken[i] = true;
}
id = Arrays.binarySearch(routes[i], target);
if (id >= 0) {
targetRoutes.add(i);
}
}
for (int i = 0; i < len; i++) {
for (int j = i + 1; j < len; j++) {
if (commonStop(routes[i], routes[j])) {
graph[i].add(j);
graph[j].add(i);
}
}
}
return graph;
}
private boolean commonStop(int[] routeA, int[] routeB) {
int idA = 0;
int idB = 0;
while (idA < routeA.length && idB < routeB.length) {
if (routeA[idA] == routeB[idB]) {
return true;
} else if (routeA[idA] < routeB[idB]) {
idA++;
} else {
idB++;
}
}
return false;
}
}