Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
41317 陈思雨 城市路(Dijkstra) C++ 解答错误 0 0 MS 268 KB 714 2022-06-11 17:03:40

Tests(0/11):


#include<bits/stdc++.h> using namespace std; const int N=510,M=100010; int h[N],e[M],ne[M],w[M],idx; int state[N]; int dist[N]; int n,m; void add(int a,int b,int c){ e[idx]=b,w[idx]=c,ne[idx]=h[a],h[a]=idx++; } void Dijkstra(){ memset(dist,0x3f,sizeof dist); dist[1]=0; for(int i=1;i<=n;i++){ int t=-1; for(int j=1;j<=n;j++) if(!state[j]&&(t==-1||dist[j]<dist[t])) t=j; state[t]=1; for(int j=h[j];j!=-1;j=ne[j]){ int v=e[j]; dist[v]=min(dist[v],dist[t]+w[j]); } } } int main(){ memset(h,-1,sizeof h); cin>>n>>m; while(m--){ int a,b,w; cin>>a>>b>>w; add(a,b,w); } Dijkstra(); if(dist[n]!=0x3f3f3f3f) cout<<dist[n]; else cout<<-1; return 0; }


测评信息: