-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path787_CheapesTFlightKStop_BellmonFord.cpp
42 lines (38 loc) · 1.22 KB
/
787_CheapesTFlightKStop_BellmonFord.cpp
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
//#include<bits/stdc++.h>
#include<vector>
#include<utility>
#include <algorithm>
using namespace std;
int findCheapestPrice(int cities, vector<vector<int>>& flights, int src, int dst, int stops)
{
/* distance from source to all other nodes */
vector<int> dist(cities, INT_MAX);
dist[src] = 0;
//Usually in Bellmon ford we do relaxation for V-1 verticies
//here we need for K stops so we will do relaxation for k+1 stops
for (int i = 0; i <= stops; i++)
{
vector<int> intermediate(dist);
for (auto flight : flights)
{
if (dist[flight[0]] != INT_MAX)
{
intermediate[flight[1]] = min(intermediate[flight[1]], dist[flight[0]] + flight[2]);
}
}
dist = intermediate;
}
return dist[dst] == INT_MAX ? -1 : dist[dst];
}
int mainbellmon()
{
//input flight : {Source, Destination, Cost}
vector<vector<int>> flights = { {4,1,1 }, { 1, 2, 3 }, { 0, 3, 2 }, { 0, 4, 10 }, { 3, 1, 1 }, { 1, 4, 3 } };
//vec, n, stops, src , dst
int stops = 2;
int totalCities = 5;
int sourceCity = 0;
int destCity = 4;
long ans = findCheapestPrice(totalCities, flights, sourceCity, destCity, stops);
return 0;
}