🌷🍁 博主猫头虎 带您 Go to New World.✨🍁 🦄 博客首页——猫头虎的博客🎐 🐳《面试题大全专栏》 文章图文并茂🦕生动形象🦖简单易学!欢迎大家来踩踩~🌺 &a…
题目链接:spfa判断负环
#include <iostream>
#include <cstring>
#include <algorithm>
#include <queue>using namespace std;const int N 100010;int n, m;
int h[N], e[N], w[N], ne[N], idx;int dist[N], cnt[N];
int st[N];void ad…