-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathNegative_weight_cycle.cpp
49 lines (47 loc) · 1.01 KB
/
Negative_weight_cycle.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
43
44
45
46
47
48
49
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution {
public:
int isNegativeWeightCycle(int n, vector<vector<int>>edges){
// Code here
vector<int> vertex(n,INT_MAX);
vertex[0]=0;
int V=edges.size();
for(int i=1;i<n;i++){
for(auto x:edges){
int u=x[0],v=x[1],w=x[2];
if(vertex[u]!=INT_MAX&&vertex[v]>vertex[u]+w){
vertex[v]=vertex[u]+w;
}
}
}
for(auto x:edges){
int u=x[0],v=x[1],w=x[2];
if(vertex[u]!=INT_MAX&&vertex[u]+w<vertex[v]){
return 1;
}
}
return 0;
}
};
// { Driver Code Starts.
int main(){
int tc;
cin >> tc;
while(tc--){
int n, m;
cin >> n >> m;
vector<vector<int>>edges;
for(int i = 0; i < m; i++){
int x, y, z;
cin >> x >> y >> z;
edges.push_back({x,y,z});
}
Solution obj;
int ans = obj.isNegativeWeightCycle(n, edges);
cout << ans <<"\n";
}
return 0;
} // } Driver Code Ends