E. Paths and Trees
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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条边,让你求u到所有点的都是最短路,并且使得图的总权值最小;

思路:dij+堆优化,在求最短路的时候多存两个pos,跟w,在保证最短路的情况下,使得w更小即可;

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
#include<queue>
#include<algorithm>
#include<stack>
#include<cstring>
#include<vector>
#include<list>
#include<set>
#include<map>
using namespace std;
#define ll long long
#define pi (4*atan(1.0))
#define eps 1e-14
#define bug(x) cout<<"bug"<<x<<endl;
const int N=3e5+,M=1e6+,inf=;
const ll INF=1e18+,mod=;
struct is
{
int v,next,w,pos;
}edge[N<<];
int head[N],edg;
void init()
{
memset(head,-,sizeof(head));
edg=;
}
void add(int u,int v,int w,int pos)
{
edg++;
edge[edg].v=v;
edge[edg].w=w;
edge[edg].pos=pos;
edge[edg].next=head[u];
head[u]=edg;
}
struct mmp
{
int s,pos,w;
ll dis;
mmp(){}
mmp(int ss,ll d,int p,int ww){s=ss,dis=d;pos=p;w=ww;}
bool operator <(const mmp &b)const
{
if(dis!=b.dis)
return dis>b.dis;
return w>b.w;
}
};
ll ans[N],sum;
int vis[N];
priority_queue<mmp>q;
vector<int>out;
void dij(int s)
{
ans[s]=;
q.push(mmp(s,0LL,,));
while(!q.empty())
{
mmp now = q.top();
q.pop();
if(vis[now.s])continue;
sum+=now.w;
out.push_back(now.pos);
vis[now.s]=;
for(int i = head[now.s]; i !=-; i = edge[i].next)
{
int v=edge[i].v;
ll w=edge[i].w;
int p=edge[i].pos;
if(ans[v] >=ans[now.s] + w)
{
q.push(mmp(v,ans[now.s]+w,p,w));
ans[v]=ans[now.s]+w;
}
}
}
}
int main()
{
init();
int n,m;
scanf("%d%d",&n,&m);
for(int i=;i<=m;i++)
{
int u,v,w;
scanf("%d%d%d",&u,&v,&w);
add(u,v,w,i);
add(v,u,w,i);
}
int s;
scanf("%d",&s);
for(int i=;i<=n;i++)
ans[i]=INF;
dij(s);
printf("%lld\n",sum);
sort(out.begin(),out.end());
for(int i=;i<out.size();i++)
printf("%d ",out[i]);
return ;
}
 
E. Paths and Trees
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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.

 

最新文章

  1. wampserver 2.5 首页链接问题,wampserver Your Projects
  2. wf(四)
  3. [转]NPOI 单元格级别应用
  4. 调试CS5343总结报告
  5. SaaS系列介绍之十五: SaaS知识重用
  6. 函数xdes_find_bit
  7. leecode 排列的学习
  8. asp.net 的那点事(2、浏览器和一般处理程序)
  9. Android基础-EditText键盘的显示与隐藏
  10. 有趣html5(两)----使用canvas结合剧本画在画布上的简单图(html5另一个强大)
  11. 学习笔记︱Nvidia DIGITS网页版深度学习框架——深度学习版SPSS
  12. redux+saga+reducer
  13. 初次部署django+gunicorn+nginx
  14. JSJ——主数据类型和引用
  15. Nginx之OCSP stapling配置
  16. 解决Myeclipse通过svn导入项目后,项目直接报错问题
  17. 第16月第6天 vs2005 lseek directdraw
  18. Flume:sink.type=hive
  19. 组件化 得到 DDComponent JIMU 模块 插件 MD
  20. Javascript Get or Set Checked Radio Value

热门文章

  1. df值自由度学习[转载]
  2. PAT 1023 Have Fun with Numbers[大数乘法][一般]
  3. C#webBrowser使用代理服务器的方法winform
  4. numpy排序(sort、argsort、lexsort、partition、sorted)
  5. java多态性方法的重写Overriding和重载Overloading详解
  6. linux中的各种$号 位置参数变量
  7. 浏览器css hack
  8. SpringMVC中controller返回图片(转)
  9. Linux基础命令---bc
  10. linux基础命令---whereis