当前位置:网站首页>spfa AcWing 852. spfa判断负环
spfa AcWing 852. spfa判断负环
2022-07-02 09:43:00 【T_Y_F666】
spfa AcWing 852. spfa判断负环
原题链接
算法标签
负环判定 spfa
思路
代码
#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
using namespace std;
const int N = 100005;
// cnt[i]存储第i个节点需要经过边数
int h[N], e[N], ne[N], w[N], idx, cnt[N];
int dis[N];
bool st[N];
int n,m;
inline int read(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
void add(int a, int b, int c){
e[idx]=b;
w[idx]=c;
ne[idx]=h[a];
h[a]=idx++;
}
bool sp(){
queue<int> q;
// 该题是判断是否存在负环
// 因此需要将所有的点都加入队列中,更新周围的点
rep(i, 1, n+1){
st[i]=true;
q.push(i);
}
while(q.size()){
int t=q.front();
q.pop();
st[t]=false;
for(int i=h[t];i!=-1;i=ne[i]){
int j=e[i];
if(dis[j]>dis[t]+w[i]){
dis[j]=dis[t]+w[i];
cnt[j]=cnt[t]+1;
if(cnt[j]>=n){
return true;
}
if(!st[j]){
q.push(j);
st[j]=true;
}
}
}
}
return false;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
memset(h, -1, sizeof h);
n=read(), m=read();
while(m--){
int x=read(), y=read(), z=read();
add(x, y, z);
}
if(sp()){
puts("Yes");
}else{
puts("No");
}
return 0;
}
原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
边栏推荐
- Heap (priority queue)
- Bom Dom
- FBX import under ue4/ue5 runtime
- Find the common ancestor of any two numbers in a binary tree
- drools执行完某个规则后终止别的规则执行
- (C language) input a line of characters and count the number of English letters, spaces, numbers and other characters.
- Calculate the maximum path sum of binary tree
- 线性DP AcWing 895. 最长上升子序列
- Initial JDBC programming
- Jenkins voucher management
猜你喜欢
drools决策表的简单使用
AI mid stage technology research
kubenetes中port、targetPort、nodePort、containerPort的区别与联系
Why do programmers have the idea that code can run without moving? Is it poisonous? Or what?
The programmer and the female nurse went on a blind date and spent 360. He packed leftovers and was stunned when he received wechat at night
async/await 异步函数
Find the common ancestor of any two numbers in a binary tree
CDA data analysis -- Introduction and use of aarrr growth model
CDA数据分析——AARRR增长模型的介绍、使用
Adding database driver to sqoop of cdh6
随机推荐
Maximum profit of jz63 shares
Introduction to CPU instruction set
lombok常用注解
WSL 2 will not be installed yet? It's enough to read this article
[ybtoj advanced training guidance] judgment overflow [error]
"As a junior college student, I found out how difficult it is to counter attack after graduation."
Sort---
Heap (priority queue)
(C language) 3 small Codes: 1+2+3+ · · +100=? And judge whether a year is a leap year or a normal year? And calculate the circumference and area of the circle?
Map and set
CDA data analysis -- Introduction and use of aarrr growth model
MySQL与PostgreSQL抓取慢sql的方法
AI mid stage technology research
CDH存在隐患 : 该角色的进程使用的交换内存为xx兆字节。警告阈值:200字节
趣味 面试题
怎样写一篇赏心悦目的英文数学论文
drools中then部分的写法
Map和Set
Distributed machine learning framework and high-dimensional real-time recommendation system
[I'm a mound pytorch tutorial] learning notes