-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0787-cheapest-flights-within-k-stops.js
43 lines (37 loc) · 1.19 KB
/
0787-cheapest-flights-within-k-stops.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* 787. Cheapest Flights Within K Stops
* https://leetcode.com/problems/cheapest-flights-within-k-stops/
* Difficulty: Medium
*
* There are n cities connected by some number of flights. You are given an array flights where
* flights[i] = [fromi, toi, pricei] indicates that there is a flight from city fromi to city
* toi with cost pricei.
*
* You are also given three integers src, dst, and k, return the cheapest price from src to dst
* with at most k stops. If there is no such route, return -1.
*/
/**
* @param {number} n
* @param {number[][]} flights
* @param {number} src
* @param {number} dst
* @param {number} k
* @return {number}
*/
var findCheapestPrice = function(n, flights, src, dst, k) {
const MAX_INT = Number.MAX_SAFE_INTEGER;
let prices = new Array(n).fill(MAX_INT);
prices[src] = 0;
for (let i = 0; i <= k; i++) {
const tempPrices = [...prices];
for (const [from, to, price] of flights) {
if (prices[from] === MAX_INT) continue;
const newPrice = prices[from] + price;
if (newPrice < tempPrices[to]) {
tempPrices[to] = newPrice;
}
}
prices = tempPrices;
}
return prices[dst] === MAX_INT ? -1 : prices[dst];
};