Dijkstra+优先队列+链式前向星

const ll inf_ll = 9223372036854775807;
const int MAX = 200005;

struct EDGE{
	int to,next,w;
}edge[MAX];
int head[MAX],cnt;

//初始化前向星,多组数据输入才使用,单组数据不用!
/*void init(){
	for(int i=0;i<MAX;++i){
		edge[i].to = 0;
		edge[i].w = 0;
		edge[i].next = 0;
		head[i] = 0;
	}
	cnt=0;
}*/

void addEdge(int u,int v,int w){
	edge[++cnt].to = v;
	edge[cnt].w = w;
	edge[cnt].next = head[u];
	head[u] = cnt;
}

struct node{
	ll dis;//距离
	int pos;//当前结点
	node(ll d,int p):dis(d),pos(p){}
	bool operator<(const node& b)const{return b.dis<dis;}
	//将距离最小的边放在优先队列的最前面
};

priority_queue<node> q;
ll dist[MAX];//保存点p到其余所有点的最短路径
bool vt[MAX];

void dijkstra(int p){
	for(int i=0;i<MAX;i++)
		dist[i] = inf_ll;//初始化为无穷大
	//memset(vt,false,sizeof(vt));//重置访问标记数组,多次调用dijkstra才使用,仅调用一次不使用
	dist[p]=0;//将起点距离标记为0
	q.push(node(0,p));
	while(!q.empty()){
		int pos = q.top().pos;
		q.pop();
		if(vt[pos]) continue;
		vt[pos] = true;
		for(int i=head[pos];i;i=edge[i].next){
			int v = edge[i].to;
			int w = edge[i].w;
			if(dist[v]>dist[pos]+w){
				dist[v] = dist[pos]+w;
				if(!vt[v])
					q.push(node(dist[v],v));
			}
		}
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值