优先队列优化SPFA!!!Layout POJ - 3169挑战例题kuangbin例题

Posted 出尘呢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优先队列优化SPFA!!!Layout POJ - 3169挑战例题kuangbin例题相关的知识,希望对你有一定的参考价值。

https://vjudge.net/problem/POJ-3169

要点:优先队列优化SPFA!!

(and差分约束系统)
差点都以为自己写成Dijkstra了,评测时一边喊着wa一边63ms,ac过了!
玄学!!
看着SPFA的优化都是把大致小的放前面,于是,于是就想一道不如用优先队列把最小的放前面。。。
桥豆麻袋,最后一对比区别,好像真的改成了Dijkstra了w
但是是不是说,只要记录最短路节点个数,dijkstra也能判负环,原来如此,还挺快的!!
真心有趣hhh

#include<stdio.h>
#include<algorithm>
#include<queue>
#include<string.h>
using namespace std;
#ifdef LOCAL
FILE*FP=freopen("text.in","r",stdin);
//FILE*fp=freopen("text.out","w",stdout);
#endif
#define INF 0x3f3f3f3f
#define N 1005
int n,ml,md,ta,tb,tv;
vector<pair<int,int> >to[N];//距离,点序 
int in[N],dis[N];
bool vis[N];
void add(int f,int t,int vl){
	to[f].push_back(make_pair(vl,t));
}
//判断负环用一条路不能超过n个点 
bool spfa(int s){
	memset(dis,0x3f,sizeof(int)*(n+2));
	dis[s]=0;
	in[s]=1;
	priority_queue<pair<int,int>,vector<pair<int,int> >,greater<pair<int,int> > >q;
	q.push(make_pair(0,s));
	pair<int,int> te;
	while(!q.empty()){
		te=q.top();q.pop();
		if(dis[te.second]<te.first)continue;
		for(int pi=0;pi<to[te.second].size();pi++){
			pair<int,int>&oo=to[te.second][pi];
			if(oo.first+dis[te.second]<dis[oo.second]){
				dis[oo.second]=oo.first+dis[te.second];
				if((in[oo.second]=in[te.second]+1)>n)return false;
				q.push(make_pair(dis[oo.second],oo.second));
			}
		}
	}
	return true;
}
signed main(){
	scanf("%d%d%d",&n,&ml,&md);
	for(int i=2;i<=n;i++){
		add(i,i-1,0);
	}
	for(int i=0;i<ml;i++){
		scanf("%d%d%d",&ta,&tb,&tv);
		add(ta,tb,tv);
	}
	for(int i=0;i<md;i++){
		scanf("%d%d%d",&ta,&tb,&tv);
		add(tb,ta,-tv);
	}
	if(!spfa(1))printf("-1\\n");
	else printf("%d\\n",(dis[n]==INF?-2:dis[n]));
	return 0;
}

以上是关于优先队列优化SPFA!!!Layout POJ - 3169挑战例题kuangbin例题的主要内容,如果未能解决你的问题,请参考以下文章

poj 3259 Wormholes spfa : 双端队列优化 判负环 O(k*E)

POJ 3463 Sightseeing

dijkstra模板(好像是斐波那契额堆优化,但我为什么看起来像优先队列优化,和spfa一样)

常用最短路优化算法及例题(附模板)——-SPFA和Dijkstra

POJ3169--Layout(SPFA+差分系统)

POJ - 1511 - 两次SPFA