codeforce-601A. The Two Routes(最短路)

题意:

给你N个点表示N个站,有汽车和火车,汽车只能走公路,火车只能走铁路。

然后给你M条双向路,代表这两个点之间有铁路连接。

然后告诉你如果两个点之间没有铁路,那么就是公路连接。

问你汽车和火车都到达目的地所要的最小时间是多少(两种交通工具不能同时到达同一个城市除了目的地)。

如果有一种交通工具不能到达就输出-1;

思路:

如果两两点之间都是铁路,那么就没有公路,那么汽车不能到达,这时-1;

如果不是这种情况那么要么有铁路连接起点终点,要么有公路,所以两者间必有一个为1,

所以求另一个的最短路就行(肯定不会相撞)。(求两次最短路也行)。

复杂度N2;

 1 #include<stdio.h>
 2 #include<algorithm>
 3 #include<iostream>
 4 #include<stdlib.h>
 5 #include<vector>
 6 #include<queue>
 7 #include<cstdio>
 8 #include<string.h>
 9 void dj(int n);
10 const int V=99999999;
11 typedef struct pp
12 {
13     int x;
14     int y;
15 } ss;
16 using namespace std;
17 int flag[500];
18 int jj[500][500];
19 int  d[500];
20 int main(void)
21 {
22     int n,i,j,k,p,q,N,M;
23     while(scanf("%d %d",&N,&M)!=EOF)
24     {
25         memset(flag,0,sizeof(flag));
26         for(i=0; i<450; i++)
27         {
28             for(j=0; j<450; j++)
29             {
30                 jj[i][j]=V;
31             }
32         }
33         for(i=0; i<M; i++)
34         {
35             scanf("%d %d",&p,&q);
36             jj[p][q]=1;
37             jj[q][p]=1;
38         }
39         dj(N);
40         int ss=d[N];
41         for(i=0; i<450; i++)//求汽车的路径
42         {
43             for(j=0; j<450; j++)
44             {
45                 if(jj[i][j]==V)
46                 {
47                     jj[i][j]=1;
48                 }
49                 else jj[i][j]=V;
50             }
51         }
52         dj(N);
53         int vv=d[N];
54         int uu=max(vv,ss);
55         if(uu>=V)
56         {
57             printf("-1\n");
58         }
59         else printf("%d\n",uu);
60
61     }
62     return 0;
63 }
64
65 void dj(int n)//最短路N2算法
66 {
67     fill(d,d+n+1,V);
68     fill(flag,flag+n+1,0);
69     d[1]=0;
70     int i,j,k,p,q;
71     while(true)
72     {
73         int l=-1;
74         for(i=1; i<=n; i++)
75         {
76             if(flag[i]==0&&(l==-1||d[i]<d[l]))
77             {
78                 l=i;
79             }
80         }
81         if(l==-1)
82         {
83             break;
84         }
85         flag[l]=1;
86         for(i=1; i<=n; i++)
87         {
88             d[i]=min(d[i],d[l]+jj[l][i]);
89         }
90     }
91
92 }
时间: 2024-10-08 15:35:54

codeforce-601A. The Two Routes(最短路)的相关文章

[ An Ac a Day ^_^ ] CodeForces 601A The Two Routes 最短路

14号就ccpc全国赛的全国赛了 而且也快东北赛的选拔赛了 现在队伍实力实在不行 参加了也是边缘化的队伍 虽然有新生保护的设置 但实话说 机会还是不大 所以不如趁现在开始好好努力 明年也许还有机会 An Ac a Day ( of course not keep a girl away ^_^ ) 题意呢 一个人开火车 一个人开大巴 火车走铁路 大巴走公路 现在有n个城镇 每两个城镇之间都有路 其中m条铁路 其他的都是公路 要求两个人都从1开始走 途中不相遇 问最快要多久 题面比较诡异 两个人

ACM学习历程—CodeForces 601A The Two Routes(最短路)

题目链接:http://codeforces.com/problemset/problem/601/A 题目大意是有铁路和陆路两种路,而且两种方式走的交通工具不能在中途相遇. 此外,有铁路的地方肯定没有陆路. 这种情况下就会有一个结论,就是至少有一种交通可以直接1到n. 这样只需要对另一种跑一个最短路就OK了. 代码: #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath&

CodeForces - 601A The Two Routes

http://codeforces.com/problemset/problem/601/A 这道题没想过来, 有点脑筋急转弯的感觉了 本质上就是找最短路径 但是卡在不能重复走同一个点 ---->>> 这是来坑人的 因为这是一个完全图(不是被road 连接  就是被rail连接 ) 所以一定有一条直接连1 和 n的路径 那么只用找没有连 1 和 n 的路径的 那个图的最短路即可 然后这个dijkstra写的是O(V^2)的写法 以后尽量用优先队列的写法O(ElogV) 1 #includ

The Two Routes CodeForces - 601A(水最短路)

一个完全图 1和n肯定有一条路  不是公路就是铁路  另= 另一个跑遍最短路即可 #include <bits/stdc++.h> #define mem(a, b) memset(a, b, sizeof(a)) using namespace std; const int maxn = 100100, INF = 0x7fffffff; int head[maxn], cnt, n, m; int vis[maxn], d[maxn]; bool w[500][500]; struct n

HDU1688 Sightseeing(SPFA 求最短路与次短路的路径条数)可用作模板

Sightseeing Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 718    Accepted Submission(s): 293 Problem Description Tour operator Your Personal Holiday organises guided bus trips across the Bene

hdu 1142 A Walk Through the Forest (最短路+dfs )

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5809    Accepted Submission(s): 2147 Problem Description Jimmy experiences a lot of stress at work these days, especial

【最短路】Walls

Description In a country, great walls have been built in such a way that every great wall connects exactly two towns. The great walls do not cross each other. Thus, the country is divided into such regions that to move from one region to another, it

Codeforce 水题报告(2)

又水了一发Codeforce ,这次继续发发题解顺便给自己PKUSC攒攒人品吧 CodeForces 438C:The Child and Polygon: 描述:给出一个多边形,求三角剖分的方案数(n<=200). 首先很明显可能是区间dp,我们可以记f[i][j]为从i到j的这个多边形的三角剖分数,那么f[i][j]=f[i][k]*f[j][k]*(i,j,k是否为1个合格的三角形) CodeForces 438D:The Child and Sequence 描述:给一个序列,要求支持区

POJ 3255 &amp;&amp; HDU 1688 &amp;&amp; HDU 3191 次短路问题

POJ 3255 Roadblocks Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7627   Accepted: 2798 Description Bessie has moved to a small farm and sometimes enjoys returning to visit one of her best friends. She does not want to get to her old h