現在地圖上有N個城市(你所在的城市編號為1),但是你的汽車油箱容量只有V,你只能在到達每個城市時才能夠補充滿油箱。現在告訴你每兩個城市之間所需要消耗的油量(兩個城市之間的路可能不止一條,消耗的油量也可能不同),是否存在一種方案使你能夠周游這N個城市(每個城市可以走多次)。
多組樣例到文件尾結束。
每組樣例第一行輸入N,M,V,表示城市數目,道路數,油箱容量。 2 <= N <= 10000, 1 <= M <= 50000, 1 <= V <= 1000。
接下來輸入M行,每行包含Xi,Yi,Ci。表示城市Xi,Yi之間存在一條耗油量Ci的路。1<=X,Y<=N, 1<=Ci<=1000。
PS:道路是雙向的。
如果存在輸出YES
否則輸出NO
4 4 2 1 4 2 1 3 2 2 3 1 3 4 4 3 3 2 1 2 3 1 3 2 2 3 3
YES
這題點太多了,所以需要用鄰接表存儲,而且要開到否則會RE。。。1WA,1RE,
#include#include #include #include #include #include using namespace std; const int maxn = 1000000 + 10; const int INF = 99999999; int head[maxn]; int num[maxn]; int d[maxn]; int visit[maxn]; int V,M,C; int size; struct Edge { int to,w,next; } E[maxn]; void init() { memset(head,-1,sizeof(head)); fill(d,d+V+1,INF); size = 0; } void addedge(int u,int v,int x) { E[size].to = v; E[size].w = x; E[size].next = head[u]; head[u] = size++; } int SPFA(int s) { queue q; fill(num,num+V+1,0); fill(visit,visit+V+1,0); d[s]=0; q.push(s); visit[s] = 1; while(!q.empty()) { int u = q.front(); q.pop(); for(int i=head[u]; i!=-1; i=E[i].next) { if(d[E[i].to] > d[u] + E[i].w && E[i].w <= C ) { d[E[i].to] = d[u]+E[i].w; q.push(E[i].to); } } } return 1; } int main() { #ifdef xxz freopen("in.txt","r",stdin); #endif // xxz while(cin>>V>>M>>C) { init(); for(int i = 0; i < M; i++) { int a,b,c; cin>>a>>b>>c; addedge(a,b,c); addedge(b,a,c); } SPFA(1); bool flag = true; for(int i = 1; i <= V; i++) { if(d[i] >= INF) { flag = false; break; } } if(!flag)cout<<"NO"<