CodeForces 545E Paths and Trees

题目大意:

给一张无向联通图,让你用最短路去生成一颗最小生成树,并输出用到的边的编号。


解题思路:

在spfa的时候就可以更新记录用到哪些边,在拥有多种最短路的时候,选择边权小的进行更新记录。


#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
#include <cmath>
#include <queue>
#include <set>
#include <map>
#include <climits>
#include <functional>
#include <deque>
#include <ctime>

#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
#pragma comment(linker, "/STACK:102400000,102400000")

using namespace std;

typedef long long ll;

const int maxn = 300010;
const ll inf = 1e16;

int cnt, head[maxn];
int pre[maxn], vis[maxn], val[maxn];
ll dis[maxn];

struct edge
{
	int to, w, nxt, id;
} e[maxn << 1];

void init()
{
	cnt = 0;
	memset(head, -1, sizeof(head));
}

void add(int u, int v, int w, int id)
{
	e[cnt].to = v;
	e[cnt].w = w;
	e[cnt].id = id;
	e[cnt].nxt = head[u];
	head[u] = cnt++;
}

void spfa(int s)
{
	memset(pre, 0, sizeof(pre));
	memset(vis, 0, sizeof(vis));
	for(int i = 0; i < maxn; i++) 
		dis[i] = inf;

	queue <int> que;
	que.push(s);
	dis[s] = 0, vis[s] = 1;
	while (!que.empty())
	{
		int u = que.front();
		que.pop();
		vis[u] = 0;
		for (int i = head[u]; ~i; i = e[i].nxt)
		{
			int v = e[i].to;
			//printf("*********%d %d\n", u, v);
			if (dis[v] > dis[u] + e[i].w)
			{
				dis[v] = dis[u] + e[i].w;
				pre[v] = e[i].id;

				if (!vis[v])
				{
					vis[v] = 1;
					que.push(v);
				}
			}
			else if (dis[v] == dis[u] + e[i].w)
			{
				if (e[i].w < val[pre[v]])
				{
					pre[v] = e[i].id;
					if (!vis[v])
					{
						vis[v] = 1;
						que.push(v);
					}
				}
			}
		}
	}
}

int main()
{
	int n, m;
	while (~scanf("%d%d", &n, &m))
	{
		init();

		for (int i = 1; i <= m; i++)
		{
			int u, v, w;
			scanf("%d%d%d", &u, &v, &w);
			add(u, v, w, i);
			add(v, u, w, i);
			val[i] = w;
		}

		//for(int i = 0; i < cnt; i++)
			//printf("%d %d %d %d\n", e[i].to, e[i].w, e[i].nxt, e[i].id);

		int s;
		scanf("%d", &s);
		spfa(s);

		ll sum = 0;
		for (int i = 1; i <= n; i++)
			if (pre[i])
				sum += val[pre[i]];

		cout << sum << endl;
		for (int i = 1; i <= n; i++)
			if (pre[i])
				printf("%d ", pre[i]);
		printf("\n");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值