码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1797

时间:2021-04-07 10:29:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:heap   operator   ++i   const   dijkstra   struct   apn   最大值   tor   

求路径中最小值的最大值,应该可以利用网络流的方法解决,不过这道题就利用了dijkstra的方法解决了。
此前POJ 2253利用Floyd方法解决的思路应该也可以应用到这种方法上来

#include <iostream>
#include <algorithm>
#include <queue>
#include <string>
#include <vector>
#include <cstdio>
#include <cstring>
#include <map>
using namespace std;

const int maxn= 1005;
const int INF= 0x3f3f3f3f;

struct Edge
{
	int b, e, d;
};
struct HeapNode
{
	int u, d;
	bool operator < (const HeapNode &rhs) const
	{
		return this->d< rhs.d;
	}
};
int n, m;
int vis[maxn], dis[maxn];
vector<Edge> edges;
vector<int> G[maxn];

void Init()
{
	edges.clear();
	for (int i= 1; i<= n; ++i){
		G[i].clear();
	}
}
void AddEdge(int &b, int &e, int &w)
{
	edges.push_back((Edge){b, e, w});
	int se= edges.size();
	G[b].push_back(se-1);
}
inline void uAddEdge(int &b, int &e, int &w)
{
	AddEdge(b, e, w);
	AddEdge(e, b, w);
}
void Dijkstra(int s)
{
	priority_queue<HeapNode> Q;
	memset(vis, 0, sizeof(vis));
	memset(dis, -1, sizeof(dis));
	dis[s]= INF;
	Q.push((HeapNode){s, 0});

	while (!Q.empty()){
		HeapNode cur= Q.top();
		Q.pop();
		int u= cur.u;
		if (vis[u]){
			continue;
		}
		vis[u]= 1;

		for (vector<int>::iterator g_iter= G[u].begin(); G[u].end()!= g_iter; ++g_iter){
			Edge &eg= edges[*g_iter];
			int d= min(dis[u], eg.d);
			if (d> dis[eg.e]){
				dis[eg.e]= d;
				Q.push((HeapNode){eg.e, d});
			}
		}
	}
}

int main(int argc, char const *argv[])
{
	int kase= 0, sc;
	scanf("%d", &sc);
	while (sc--){
		int b, e, w;
		Init();
		scanf("%d %d", &n, &m);
		for (int i= 0; i< m; ++i){
			scanf("%d %d %d", &b, &e, &w);
			uAddEdge(b, e, w);
		}
		Dijkstra(1);

		printf("Scenario #%d:\n", ++kase);
		printf("%d\n\n", dis[n]);
	}	
	return 0;
}

POJ 1797

标签:heap   operator   ++i   const   dijkstra   struct   apn   最大值   tor   

原文地址:https://www.cnblogs.com/Idi0t-N3/p/14617986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!