参考  http://blog.csdn.net/zhuyingqingfen/article/details/6370561

刘汝佳白皮书

#include<stdio.h>

#include<queue>

#include<iostream>

#include<vector>

using namespace std;

#define N 2100

#define inf  1000000000

int n,m;

struct node {

int u,v,w,next;

}bian[N];

int yong,head[N];

void creat(int u,int v,int w) {

bian[yong].u=u;

bian[yong].v=v;

bian[yong].w=w;

bian[yong].next=head[u];

head[u]=yong++;

}

void  Dcreat(int u,int v,int w) {

creat(u,v,w);

creat(v,u,w);

}

int dijkstra(int u,int end) {

int dis[N],i,j,visit[N];

memset(visit,0,sizeof(visit));

for(i=0;i<n;i++)

dis[i]=inf;

dis[u]=0;

     typedef pair<int ,int >p;//pair 定义了自己的排序规则--先比较第一维,相等才比较第二维 

priority_queue<p,vector<p>,greater<p> >q;

q.push(make_pair(dis[u],u));

while(!q.empty()) {

p cur=q.top();

j=cur.second;

q.pop();

if(visit[j])continue;

visit[j]=1;

for(i=head[j];i!=-1;i=bian[i].next) 

if(dis[bian[i].v]>dis[j]+bian[i].w) {

dis[bian[i].v]=dis[j]+bian[i].w;

q.push(make_pair(dis[bian[i].v],bian[i].v));

}

}



if(dis[end]<inf)

return dis[end];

return -1;

}

int main() {

int  i,j,a,b;

while(scanf("%d%d",&n,&m)!=EOF) {

yong=0;

memset(head,-1,sizeof(head));

while(m--) {

scanf("%d%d%d",&a,&b,&j);

Dcreat(a,b,j);

}

scanf("%d%d",&a,&b);

printf("%d\n",dijkstra(a,b));

}

return 0;

}

//定义结构体优先队列

#include<stdio.h>

#include<queue>

#include<iostream>

#include<vector>

using namespace std;

#define N 2100

#define inf  1000000000

int n,m;

struct node {

int u,v,w,next;

}bian[N];

int yong,head[N];

void creat(int u,int v,int w) {

bian[yong].u=u;

bian[yong].v=v;

bian[yong].w=w;

bian[yong].next=head[u];

head[u]=yong++;

}

void  Dcreat(int u,int v,int w) {

creat(u,v,w);

creat(v,u,w);

}

struct nodee {

int len,v;

friend bool  operator<(nodee a,nodee b) {

if(a.len!=b.len)

return a.len>b.len;

return a.v>b.v;

}

};

int dijkstra(int u,int end) {

int dis[N],i,j,visit[N];

memset(visit,0,sizeof(visit));

for(i=0;i<n;i++)

dis[i]=inf;

dis[u]=0;

     //typedef pair<int ,int >p;

//priority_queue<p,vector<p>,greater<p> >q;

// q.push(make_pair(dis[u],u));

priority_queue<nodee>q;

nodee cur,now;

cur.len=0;

cur.v=u;

q.push(cur);

while(!q.empty()) {

nodee cur=q.top();

// j=cur.second;

q.pop();

if(visit[cur.v])continue;

visit[cur.v]=1;

for(i=head[cur.v];i!=-1;i=bian[i].next) 

if(dis[bian[i].v]>dis[cur.v]+bian[i].w) {

dis[bian[i].v]=dis[cur.v]+bian[i].w;

now.len=dis[bian[i].v];

now.v=bian[i].v;

q.push(now);

}

}



if(dis[end]<inf)

return dis[end];

return -1;

}

int main() {

int  i,j,a,b;

while(scanf("%d%d",&n,&m)!=EOF) {

yong=0;

memset(head,-1,sizeof(head));

while(m--) {

scanf("%d%d%d",&a,&b,&j);

Dcreat(a,b,j);

}

scanf("%d%d",&a,&b);

printf("%d\n",dijkstra(a,b));

}

return 0;

}

hdu 1874 dijkstra 队列实现 比数组高效特别在稀疏图的更多相关文章

  1. hdu 1874 Dijkstra算法

    先贴个网上找的比较通俗易懂的教程: 2.1Dijkstra算法(非负权,使用于有向图和无向图) Dijkstra算法是典型最短路算法,用于计算一个节点到其他所有节点的最短路径.主要特点是以起始点为中心 ...

  2. ACM: HDU 1874 畅通工程续-Dijkstra算法

    HDU 1874 畅通工程续 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Desc ...

  3. HDU 1874 畅通工程续-- Dijkstra算法详解 单源点最短路问题

    参考 此题Dijkstra算法,一次AC.这个算法时间复杂度O(n2)附上该算法的演示图(来自维基百科): 附上:  迪科斯彻算法分解(优酷) problem link -> HDU 1874 ...

  4. (重刷)HDU 1874 畅通工程续 + HDU 2544 最短路 最短路水题,dijkstra解法。

    floyd解法 今天初看dijkstra,先拿这两题练手,其他变形题还是不是很懂. 模版题,纯练打字... HDU 1874: #include <cstdio> #define MAXN ...

  5. HDU 1874 畅通工程续(初涉dijkstra算法实现)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1874 dijkstra算法实现可参照此博客学习:http://www.cnblogs.com/biye ...

  6. hdu 2544 hdu 1874 poj 2387 Dijkstra 模板题

    hdu 2544  求点1到点n的最短路  无向图 Sample Input2 1 //结点数 边数1 2 3 //u v w3 31 2 52 3 53 1 20 0 Sample Output32 ...

  7. HDU 2544 最短路(floyd+bellman-ford+spfa+dijkstra队列优化)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2544 题目大意:找点1到点n的最短路(无向图) 练一下最短路... dijkstra+队列优化: #i ...

  8. hdu 1874 畅通工程续(迪杰斯特拉优先队列,floyd,spfa)

    畅通工程续 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Subm ...

  9. hdoj 1874 dijkstra

    在做PAT的甲1003,思考DFS和图什么的,时间紧张直接去看柳神(日后上传柳神的C++版本)的订阅,得知是dijkstra,转去用hdoj 1874练手,写了两天,终于调出来了 题目链接:http: ...

随机推荐

  1. sshd服务器搭建管理和防止暴力破解

    1.1 Linux服务前期环境准备,搭建一个RHEL7环境 1.2 sshd服务安装-ssh命令使用方法 1.3 sshd服务配置和管理 1.4 防止SSHD服务暴力破解的几种方式 1.1 Linux ...

  2. 13、git

    安装Git 网上有很多Git安装教程,如果需要图形界面,windows下建议使用TortoiseGit,linux建议使用Git GUI或者GITK.(windows下载exe安装包,linux可以使 ...

  3. 2017 ACM-ICPC 亚洲区(南宁赛区)网络赛 Train Seats Reservation

    You are given a list of train stations, say from the station 11 to the station 100100. The passenger ...

  4. 三分 HDOJ 3714 Error Curves

    题目传送门 /* 三分:凹(凸)函数求极值 */ #include <cstdio> #include <algorithm> #include <cstring> ...

  5. springboot与dubbo整合入门(三种方式)

    Springboot与Dubbo整合三种方式详解 整合环境: jdk:8.0 dubbo:2.6.2 springboot:2.1.5 项目结构: 1.搭建项目环境: (1)创建父项目与三个子项目,创 ...

  6. 【C++】Item18. Make interfaces easy to use correctly and hard to use incorrectly

    接口容易被正确使用,不易被误用 c++简单工厂模式时,初级实现为ITest* CreateTestOld(), 然后用户负责释放返回的对象.如果忘记释放就会造成memory leak,所以在设计工厂接 ...

  7. .Net实战之反射外卖计费

    场景 叫外卖支付,可以有以下优惠: 1.  满30元减12 2.  是会员减配送费,比如5元 3.  优惠券 …. 问题? 如何在不改代码的情况下更灵活的去控制优惠的变化??? 有些代码与实际业务可能 ...

  8. JavaScript(七)数组

    Array类型 1.创建数组 字面量 var arr = [];//不要在低版本的浏览其中创建字面量的时候最后 //一个item后面加 逗号 低版本会 再新建一个空的item 构造函数 var arr ...

  9. 【Android学习笔记】Mac下Android Studio开发环境搭建

    本文由@ray 出品,转载请注明出处.  文章链接:http://www.cnblogs.com/wolfray/p/7829069.html 对于移动端这块,笔者之前一直都是进行iOS开发的,也从来 ...

  10. Apache ab使用指南

    Apache ab使用图例: 其中比较重要的两个指标要特别注意: Requests per second:表示平均每秒事务数,相当于LR的TPS Time per second:用户请求平均响应时间和 ...