原理:用一个点去更新和他相连的一条边,然后在用相连的点去更新和当前的点相连的边,一次下去, 当连到之前更新过的点的时候, 就说明有负环。
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#define inf 999999
using namespace std;
struct s{
int to, val;
s(){}
s(int xx, int yy):to(xx), val(yy){}
};
vector<s>edge[510];
int n, m, w;
int d[510], par[510], cont[510];
bool vis[510];
int find(int xx){
if(xx == par[xx])
return xx;
return par[xx] = find(par[xx]);
}
bool dfs(int dep, int pos){
int i;
if(dep == cont[par[pos]]+2)
return false;
for(i = 0; i < edge[pos].size(); i++){
int nd = edge[pos][i].to;
int num = edge[pos][i].val;
if(d[nd] > d[pos] + num){
if(vis[nd])
return true;
d[nd] = d[pos] + num;
vis[nd] = 1;