Codeforces Round #303 (Div. 2) E. Paths and Trees(最短路)

Little girl Susie accidentally found her elder brother’s notebook. She has many things to do, more important than solving problems, but she found this problem too interesting, so she wanted to know its solution and decided to ask you about it. So, the problem statement is as follows.

Let’s assume that we are given a connected weighted undirected graph G = (V, E) (here V is the set of vertices, E is the set of edges). The shortest-path tree from vertex u is such graph G1 = (V, E1) that is a tree with the set of edges E1 that is the subset of the set of edges of the initial graph E, and the lengths of the shortest paths from u to any vertex to G and to G1 are the same.

You are given a connected weighted undirected graph G and vertex u. Your task is to find the shortest-path tree of the given graph from vertex u, the total weight of whose edges is minimum possible.

Input
The first line contains two numbers, n and m (1 ≤ n ≤ 3·105, 0 ≤ m ≤ 3·105) — the number of vertices and edges of the graph, respectively.

Next m lines contain three integers each, representing an edge — ui, vi, wi — the numbers of vertices connected by an edge and the weight of the edge (ui ≠ vi, 1 ≤ wi ≤ 109). It is guaranteed that graph is connected and that there is no more than one edge between any pair of vertices.

The last line of the input contains integer u (1 ≤ u ≤ n) — the number of the start vertex.

Output
In the first line print the minimum total weight of the edges of the tree.

In the next line print the indices of the edges that are included in the tree, separated by spaces. The edges are numbered starting from 1 in the order they follow in the input. You may print the numbers of the edges in any order.

If there are multiple answers, print any of them.

Examples
inputCopy
3 3
1 2 1
2 3 1
1 3 2
3
outputCopy
2
1 2
inputCopy
4 4
1 2 1
2 3 1
3 4 1
4 1 2
4
outputCopy
4
2 3 4
Note
In the first sample there are two possible shortest path trees:

with edges 1 – 3 and 2 – 3 (the total weight is 3);
with edges 1 – 2 and 2 – 3 (the total weight is 2);
And, for example, a tree with edges 1 – 2 and 1 – 3 won’t be a shortest path tree for vertex 3, because the distance from vertex 3 to vertex 2 in this tree equals 3, and in the original graph it is 1.

题意: 一个无相图,从源点u出发,到其他所有点的最短路为权值建立一颗树,求整颗树的权值最小,并且输出在无相图中所选的边。

思路: 求出源点u到其他点的最短路,即所求答案即是树的权值,再判断无相图中的边是否在最短路径上即可。

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int MAXN = 300010;
const ll INF = 0x3f3f3f3f;
typedef pair<ll,int>P;

struct Edge
{
    int v,w,id,next;
}e[MAXN<<1];
int head[MAXN],cnt;
bool vis[MAXN];
ll dis[MAXN];
int n,m;

void dijkstra(int s)
{
    priority_queue<P,vector<P>, greater<P> >que;
    memset(dis,INF,sizeof(dis));
    dis[s] = 0;
    que.push(P(0,s));
    while(!que.empty()){
        P t = que.top(); que.pop();
        int u = t.second;
        if(vis[u])  continue;
        vis[u] = true;
        for(int i = head[u]; ~i; i = e[i].next){
            int v = e[i].v, w = e[i].w;
            if(dis[v] > dis[u] + w){
                dis[v] = dis[u] + w;
                que.push(P(dis[v],v));
            }
        }
    }
}

void addedge(int u,int v,int w,int id)
{
    e[cnt] = {v,w,id,head[u]};
    head[u] = cnt++;
}

void init()
{
    for(int i = 0; i <= n; ++i) head[i] = -1;
    cnt = 0;
}

int main()
{
    scanf("%d%d",&n,&m);
    init();
    for(int i = 1; i <= m; ++i){
        int u,v,w;
        scanf("%d%d%d",&u,&v,&w);
        addedge(u,v,w,i);
        addedge(v,u,w,i);
    }
    int s;  scanf("%d",&s);
    dijkstra(s);
    vector<int>ve;
    ll ans = 0;
    for(int i = 1; i <= n; ++i){
        if(i == s) continue;
        ll Min = INF;
        int id;
        for(int j = head[i]; ~j; j = e[j].next){
            int v = e[j].v, w = e[j].w;
            if(dis[i] == dis[v] + w && Min > w){
                Min = w;
                id = e[j].id;
            }
        }
        ans += Min;
        ve.push_back(id);
    }
    printf("%lld\n",ans);
    for(int i = 0; i < ve.size(); ++i){
        printf("%d%c",ve[i],i == ve.size() - 1 ? '\n' : ' ');
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值