链接
http://www.lydsy.com/JudgeOnline/problem.php?id=3436
题解
刷水题放松一下紧张的神经。
差分约束建图跑最长路。
啥,差这么多?第一个是DFS版本的spfa,第二个是BFS版本的spfa。
代码
//差分约束
#include <cstdio>
#include <algorithm>
#include <queue>
#define maxn 100000
using namespace std;
int N, M, head[maxn], to[maxn], cnt[maxn], w[maxn], vis[maxn], nex[maxn], dist[maxn],
tot, ans;
inline void adde(int a, int b, int v)
{to[++tot]=b;w[tot]=v;nex[tot]=head[a];head[a]=tot;}
bool spfa(int pos)
{
int p;
vis[pos]=1;
for(p=head[pos];p;p=nex[p])
{
if(dist[to[p]]<dist[pos]+w[p])
{
dist[to[p]]=dist[pos]+w[p];
if(vis[to[p]])return false;
if(!spfa(to[p]))return false;
}
}
vis[pos]=0;
return true;
}
int main()
{
int i, a, b, c, type;
scanf("%d%d",&N,&M);
for(i=1;i<=M;i++)
{
scanf("%d%d%d",&type,&a,&b);
if(type==3){adde(a,b,0),adde(b,a,0);continue;}
scanf("%d",&c);
if(type==2)swap(a,b),c=-c;
adde(a,b,c);
}
for(i=1;i<=N;i++)
{
if(!spfa(i))
{
printf("No");
return 0;
}
}
printf("Yes");
return 0;
}