标签:
Description
Input
Output
Sample Input
2 1 1 2 3 3 3 1 2 5 2 3 5 3 1 2 0 0
Sample Output
3 2
Dijkstra算法的模版题
和我之前写的畅通工程续基本一样就是判定不同。
AC代码:
#include"algorithm" #include"iostream" #include"cstring" #include"cstdlib" #include"string" #include"cstdio" #include"vector" #include"cmath" #include"queue" using namespace std; typedef long long LL; #define memset(x,y) memset(x,y,sizeof(x)) #define memcpy(x,y) memcpy(x,y,sizeof(x)) #define MX 401 const int dij_v=1005; const int dij_edge=10005; template <class T> struct Dijkstra { struct Edge { int v,nxt; T w; } E[dij_edge<<1]; int Head[dij_v],erear; T p[dij_v],INF; typedef pair< T ,int > PII; void edge_init() { erear=0; memset(Head,-1); } void edge_add(int u,int v,T w){ E[erear].v=v; E[erear].w=w; E[erear].nxt=Head[u];; Head[u]=erear++; } void run(int u) { memset(p,0x3f); INF=p[0]; priority_queue<PII ,vector<PII >,greater<PII > >Q; while(!Q.empty()) { Q.pop(); } Q.push(PII(0,u)); p[u]=0; whil e(!Q.empty()) { PII a=Q.top(); Q.pop(); int u=a.second; if(a.first!=p[u])continue; for(int i=Head[u]; ~i; i=E[i].nxt) { int v=E[i].v; T w=E[i].w; if(p[u] + w <p[v]) { p[v]=w+p[u]; Q.push(PII(p[v],v)); } } } } }; Dijkstra<int > dij; int main() { int n,m; while(~scanf("%d%d",&n,&m)){ if(!n&&!m)break; dij.edge_init(); for(int i=1;i<=m;i++){ int u,v,w; scanf("%d%d%d",&u,&v,&w); dij.edge_add(u,v,w); dij.edge_add(v,u,w); } dij.run(1); printf("%d\n",dij.p[n]); } return 0; }
标签:
原文地址:http://www.cnblogs.com/HDMaxfun/p/5751296.html