原題連接在這裏:https://leetcode.com/problems/cheapest-flights-within-k-stops/node
題目:this
There are n
cities connected by m
flights. Each fight starts from city u
and arrives at v
with a price w
.spa
Now given all the cities and flights, together with starting city src
and the destination dst
, your task is to find the cheapest price from src
to dst
with up to k
stops. If there is no such route, output -1
.code
Example 1: Input: n = 3, edges = [[0,1,100],[1,2,100],[0,2,500]] src = 0, dst = 2, k = 1 Output: 200 Explanation: The graph looks like this:
The cheapest price from city to city with at most 1 stop costs 200, as marked red in the picture.02
Example 2: Input: n = 3, edges = [[0,1,100],[1,2,100],[0,2,500]] src = 0, dst = 2, k = 0 Output: 500 Explanation: The graph looks like this:
The cheapest price from city to city with at most 0 stop costs 500, as marked blue in the picture.02
Note:orm
n
will be in range [1, 100]
, with nodes labeled from 0
to n
- 1
.flights
will be in range [0, n * (n - 1) / 2]
.(src,
dst
, price)
.[1, 10000]
.k
is in the range of [0, n - 1]
.題解:blog
When it comes to Dijkstra, it needs PriorityQueue based on cost.ci
From the example, if the stops is within K, then it could continue update the total cost.leetcode
Create a map first. get
Initialize PriorityQueue based on current cost. Put src in it.it
When polling out head node, check if it is dst, if it is, it must be smallest cost because of PriorityQueue.
Otherwise, get its stop, it is still smaller than K, and check the graph, get next nestinations and accumlate the cost, add to PriorityQueue.
If until the PriorityQueue is empty, there is no return yet, then there is no such route, return -1.
Time Complexity: O(ElogE). E = flights.length. que size could be E, each add and poll takes logE.
Space: O(E). graph size is O(E). que size is O(E).
AC Java:
1 class Solution { 2 public int findCheapestPrice(int n, int[][] flights, int src, int dst, int K) { 3 if(n == 0 || K < 0 || flights == null || flights.length == 0 || flights[0].length != 3){ 4 return -1; 5 } 6 7 int res = Integer.MAX_VALUE; 8 9 Map<Integer, List<int []>> graph = new HashMap<>(); 10 for(int [] f : flights){ 11 if(!graph.containsKey(f[0])){ 12 graph.put(f[0], new ArrayList<int []>()); 13 } 14 15 graph.get(f[0]).add(new int[]{f[1], f[2]}); 16 } 17 18 PriorityQueue<Node> que = new PriorityQueue<Node>((a, b) -> a.cost-b.cost); 19 que.add(new Node(src, 0, -1)); 20 while(!que.isEmpty()){ 21 Node cur = que.poll(); 22 23 if(cur.city == dst){ 24 return cur.cost; 25 } 26 27 if(cur.stop < K){ 28 List<int []> nexts = graph.getOrDefault(cur.city, new ArrayList<int []>()); 29 for(int [] next : nexts){ 30 que.add(new Node(next[0], cur.cost+next[1], cur.stop+1)); 31 } 32 } 33 } 34 35 return -1; 36 } 37 } 38 39 class Node{ 40 int city; 41 int cost; 42 int stop; 43 public Node(int city, int cost, int stop){ 44 this.city = city; 45 this.cost = cost; 46 this.stop = stop; 47 } 48 }