787. Cheapest Flights Within K Stops - Medium
前往題目
思路
Bellman-ford
- 用額外的
array
儲存從source
到dest.
的距離 - 執行
k+1
次,因為題目的k是指幾個stop
- 每輪都走一遍所有的
flights
,有更短的距離就更新,最後回傳,如果是MAX_VALUE
就回傳-1
比較難理解的是用tempPrices
儲存當前暫時的prices
,走完flights
後再給prices
,這部分是因為如果不用temprices
的話會不知道當前的source
是MAX_VALUE
,也就是unreachable
,需要跳過
Code
787. Cheapest Flights Within K Stops - Medium
https://f88083.github.io/2024/01/18/787-Cheapest-Flights-Within-K-Stops-Medium/