标签:des style blog class code c
2 1 1 2 3 3 3 1 2 5 2 3 5 3 1 2 0 0
3 2
算是保存一下SPFA和邻接表的模板。
#include <iostream> #include <queue> #include <string.h> #include <stdio.h> using namespace std; const int MAXN=10000; const int lmax=0x7FFFFFFF; typedef struct { int v; int next; int cost; }Edge; Edge e[MAXN]; int p[MAXN]; int Dis[MAXN]; bool vist[MAXN]; queue<int> q; int m,n;//点,边 void init() { int i; int eid=0; memset(vist,0,sizeof(vist)); memset(p,-1,sizeof(p)); fill(Dis,Dis+MAXN,lmax); while (!q.empty()) { q.pop(); } for (i=0;i<n;++i) { int from,to,cost; scanf("%d %d %d",&from,&to,&cost); e[eid].next=p[from]; e[eid].v=to; e[eid].cost=cost; p[from]=eid++; //以下适用于无向图 swap(from,to); e[eid].next=p[from]; e[eid].v=to; e[eid].cost=cost; p[from]=eid++; } } void SPF() { init(); int Start=1,End; // scanf("%ld %ld",&Start,&End); Dis[Start]=0; vist[Start]=true; q.push(Start); while (!q.empty()) { int t=q.front(); q.pop(); vist[t]=false; int j; for (j=p[t];j!=-1;j=e[j].next) { int w=e[j].cost; if (w+Dis[t]<Dis[e[j].v]) { Dis[e[j].v]=w+Dis[t]; if (!vist[e[j].v]) { vist[e[j].v]=true; q.push(e[j].v); } } } } } int main() { while (~scanf("%d%d",&m,&n) && m+n) { SPF(); printf("%d\n",Dis[m]); } return 0; }
标签:des style blog class code c
原文地址:http://blog.csdn.net/u013923947/article/details/25640847