第八次ccf-交通规划

一直对dijkstra算法的写法存在盲区,参考自链接,自己编写

http://blog.csdn.net/aozil_yang/article/details/52841437

优先级队列用得很精髓,同时重载运算符函数后面需要加const,以前一直用的friend。。。

再次感谢大牛的博客,受教了

这个dijkstra加入模板,收益很大

#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn=10000+10;
const int inf=0x3f3f3f;
struct edge{
	int f,to,w;
	edge(int a=0,int b=0,int c=0):f(a),to(b),w(c){
	}
};
struct node{
	int d,f;
	node(int a=0,int b=0):d(a),f(b){
	}
	bool operator < (const node& t) const{
		return d>t.d;
	}
};
int ans[maxn],k=0,visit[maxn],an[maxn];
map >g;
priority_queue q;
vector edges;
inline void add(int a,int b,int c){
	edges.push_back(edge(a,b,c));
	g[a].push_back(k++);
}
void dijkstra(int s){
	q.push(node(0,s));
	ans[s]=0;
	while(!q.empty()){
		node t=q.top();
		q.pop();
		int to=t.f;
		if(visit[to]) continue;
		visit[to]=1;
		int len=g[to].size();
		for(int i=0;ians[e.f]+e.w){
				ans[e.to]=ans[e.f]+e.w;
				q.push(node(ans[e.to],e.to));
			}
		}
	}
}
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=0;i

G国国王来中国参观后,被中国的高速铁路深深的震撼,决定为自己的国家也建设一个高速铁路系统。
  建设高速铁路投入非常大,为了节约建设成本,G国国王决定不新建铁路,而是将已有的铁路改造成高速铁路。现在,请你为G国国王提供一个方案,将现有的一部分铁路改造成高速铁路,使得任何两个城市间都可以通过高速铁路到达,而且从所有城市乘坐高速铁路到首都的最短路程和原来一样长。请你告诉G国国王在这些条件下最少要改造多长的铁路。
输入格式
  输入的第一行包含两个整数n, m,分别表示G国城市的数量和城市间铁路的数量。所有的城市由1到n编号,首都为1号。
  接下来m行,每行三个整数a, b, c,表示城市a和城市b之间有一条长度为c的双向铁路。这条铁路不会经过a和b以外的城市。
输出格式
  输出一行,表示在满足条件的情况下最少要改造的铁路长度。
样例输入
4 5
1 2 4
1 3 5
2 3 2
2 4 3
3 4 2
样例输出
11
评测用例规模与约定
  对于20%的评测用例,1 ≤ n ≤ 10,1 ≤ m ≤ 50;
  对于50%的评测用例,1 ≤ n ≤ 100,1 ≤ m ≤ 5000;
  对于80%的评测用例,1 ≤ n ≤ 1000,1 ≤ m ≤ 50000;
  对于100%的评测用例,1 ≤ n ≤ 10000,1 ≤ m ≤ 100000,1 ≤ a, b ≤ n,1 ≤ c ≤ 1000。输入保证每个城市都可以通过铁路达到首都。

你可能感兴趣的:(ccf)