Paths and Trees (Dijkstra单源最短路+边权值和最小)

 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

Input

3 3
1 2 1
2 3 1
1 3 2
3

Output

2
1 2 

Input

4 4
1 2 1
2 3 1
3 4 1
4 1 2
4

Output

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.

题意:

给出n个点m条边的带权无向图,问一个起点到任意点的单源最短路径,走的所有点遍历的所有边的边权总和

还需要输出到达任意点的最短路径是哪些边

注意long long 

#include<cstdio>
#include<queue>
#include<algorithm>
#include<cstring>
#include<vector>
using namespace std;
typedef long long ll;
const ll INF=(1LL<<60)-1;
const int N=3e5+5;
struct node{
	int v,w,id;
	node(int vv=0,int ww=0,int iid=0){
		v=vv;
		w=ww;
		id=iid;
	}
};
struct Node{
	int u;
	ll d;
	Node(int uu=0,ll dd=0){
		u=uu;
		d=dd;
	}
	bool operator<(const Node &a)const{
	     return d>a.d;
	}
};
vector<node>E[N];
bool vis[N];
ll dis[N];
int used[N];
ll cost[N];
void Dijkstra(int n,int start){
	priority_queue<Node> q;
	memset(vis,0,sizeof(vis));
	for(int i=1;i<=n;i++) dis[i]=INF;
	dis[start]=0;
	q.push(Node(start,0));
	while(!q.empty()){
		Node tmp=q.top();
		q.pop();
		int u=tmp.u;
		if(vis[u]) continue;
		vis[u]=true;
		for(int i=0;i<E[u].size();i++){
			int v=E[u][i].v;
			int w=E[u][i].w;
			int id=E[u][i].id;
			if(!vis[v]&&dis[v]>dis[u]+w){
				dis[v]=dis[u]+w;
				cost[v]=w;
				used[v]=id;
				q.push(Node(v,dis[v]));
			}
			else if(!vis[v]&&dis[v]==dis[u]+w){
				if(cost[v]>w){
					cost[v]=w;
					used[v]=id;
					q.push(Node(v,dis[v]));
				}
			}
		}
	}
	ll ans=0;
	for(int i=1;i<=n;i++) ans+=cost[i];
	printf("%I64d\n",ans);
	for(int i=1;i<=n;i++){
		if(i!=start) printf("%d ",used[i]);
	}
	printf("\n");
}
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=1;i<=m;i++){
		int u,v,w;
		scanf("%d%d%d",&u,&v,&w);
		E[u].push_back(node(v,w,i));
		E[v].push_back(node(u,w,i));
	}
	int start;
	scanf("%d",&start);
	Dijkstra(n,start);
	return 0;
}

 

全部评论

相关推荐

昨天 16:33
已编辑
微软_sde(实习员工)
点赞 评论 收藏
分享
11-13 10:17
门头沟学院 Java
昨天面美团,jvm,juc问的好深啊,感觉小林coding不太够喔,牛油们有没有什么推荐的八股网站嘛🕒&nbsp;岗位/面试时间👥&nbsp;面试题目🤔&nbsp;面试感受
明天不下雨了:小林Coding:https://xiaolincoding.com/ 全栈哥:https://www.pdai.tech/ Guide哥:https://javaguide.cn/ 秀哥:https://interviewguide.cn/ 沉默王二:https://javabetter.cn/home.html 磊哥:https://www.javacn.site/interview/basic/ 小傅哥:https://bugstack.cn/ 源码哥:https://doocs.github.io/source-code-hunter/#/ 各大厂的公众号技术文章和一些经典的书籍
面试太紧张了怎么办?
点赞 评论 收藏
分享
10-20 15:26
门头沟学院 Java
桥头牛油火锅:这个比例不正常,简历的话项目经历放中间,项目功能分点可以再明确点,前面加“·”或者“1 2 3”,另外简历上的照片可以去外面摄影店拍一下,以后也会用到的,hr筛人也是多少会看的,毕竟世界是一个巨大的卡颜局嘛,还有有些hr由于消息太多可能没看到,后面可能会回来找你,要简历的还会多一点,我也是普2本,比例大致是600:90:15:3,当然我实力不太够,拿的offer比较少,慢慢来吧
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务