编程语言
首页 > 编程语言> > A*算法的初步与k短路

A*算法的初步与k短路

作者:互联网

A*(念做:A Star)算法是一种很常用的路径查找和图形遍历算法。它有较好的性能和准确度。

A*算法最初发表于1968年,由Stanford研究院的Peter Hart, Nils Nilsson以及Bertram
Raphael发表。它可以被认为是Dijkstra算法的扩展。

由于借助启发函数的引导,A*算法通常拥有更好的性能。

一些含义

算法描述

计算各点的H 
do
{
	寻找open_list中F值最小的点
	将该点加入至close_list 
	for(遍历该点周围的点v)
	{
		if(v在close_list中||v不可通过)
		do nothing
		if(v不在open_list中)
		{
			加入open_list 
			更新该点的G,F,和父亲点 
		}
		else if(v已经在open_list中)
		{
			重新计算该点的G
			G小则更新G,F和父亲点 
		}
	} 
}while(目标点不在open_list&&open_list中还有点)

k短路

Code

#include <iostream>
#include <cstdio>
#include <vector>
#include <queue>
using namespace std;
const int maxn = 1005,maxm=1e4+5;
int n,m,k,cnt,last[maxn],d[maxn],close_list[maxn],g[maxn];
int fronts[maxn],cnt1,dz[maxn],ans;
struct edge{
    int v,w,next;
}e[maxm];
struct edge ez[maxm];
struct heapnode{
    int u,d;
    bool operator<(const heapnode &a)const{
        return d>a.d;
    }
};

struct ele{
    int u,f,g;
    bool operator<(const ele &a)const{
        return f>a.f;
    }
};
void add(int u,int v,int w,edge edg[],int &num,int las[])
{
    edg[++num].v=v;
    edg[num].next=las[u];
    edg[num].w=w;
    las[u]=num;
}

void read()
{
    cin>>n>>m>>k;
    for(int i=1,u,v,w;i<=m;i++)
    {
        cin>>u>>v>>w;
        add(v,u,w,e,cnt,last);
        add(u,v,w,ez,cnt1,fronts);
    }
}

void dijkstra()
{
    priority_queue<heapnode>q;
    for(int i=2;i<=n;i++)
        d[i]=0x3f3f3f3f;
    q.push({1,0});
    while(!q.empty())
    {
        heapnode x=q.top();
        q.pop();
        int u=x.u;
        if(x.d!=d[u])
            continue;
        for(int i=last[u];i;i=e[i].next)
        {
            int v=e[i].v,w=e[i].w;
            if(d[u]+w<d[v])
            {
                d[v]=d[u]+w;
                q.push({v,d[v]});
            }
        }
    }
}

void Astar()
{
    dijkstra();
    priority_queue<ele>q;
    q.push({n,d[n],0});
    do{
        ele x=q.top();
        q.pop();
        int u=x.u,f=x.f,g=x.g;
        if(dz[u]==k) continue;
        dz[u]++;
        if(u==1)
        {
                cout<<f<<endl;
                continue;
        }
        for(int i=fronts[u];i;i=ez[i].next)
        {
            int v=ez[i].v,w=ez[i].w;
            q.push({v,d[v]+g+w,g+w});//u,f,h,g
        }

    }while(!q.empty()&&dz[1]<k);
    if(dz[1]!=k)
    {
        for(int i=dz[1]+1;i<=k;i++)
            cout<<-1<<endl;
    }
}
int main()
{
    read();
    Astar();
    return 0;
}

标签:int,短路,list,初步,算法,maxn,该点,open
来源: https://blog.csdn.net/gyp0205/article/details/120372226