UVa 1025 城市里的间谍

https://vjudge.net/problem/UVA-1025

题意:一个间谍要从第一个车站到第n个车站去会见另一个,在是期间有n个车站,有来回的车站,让你在时间T内时到达n,并且等车时间最短,输出最短等车时间。

思路:先用一个has_train[t][i][0]来表示在t时刻,在车站i,是否有往右开的车。同理,has_train[t][i][1]用来保存是否有往左开的车。

用d(i,j)表示时刻i,你在车站j,最少还需要等待多长时间。边界条件是d(T,n)=0,其他d(T,i)为正无穷。

每次有三种决策:

①:等一分钟。

②:搭成往右开的车(如果有)。

③:搭成往左开的车(如果有)。

 1 #include<iostream>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5
 6 const int INF = 0x3f3f3f3f;
 7
 8 int T, n, dp[205][60], m1, m2, has_train[255][55][2],t[80];
 9
10 int main()
11 {
12     //freopen("D:\\txt.txt", "r", stdin);
13     int kase = 0;
14     while (cin >> n && n)
15     {
16         cin >> T;
17         for (int i = 1; i < n; i++)
18         {
19             cin >> t[i];
20         }
21         memset(has_train, 0, sizeof(has_train));
22         int x;
23         cin >> m1;
24         for (int i = 0; i < m1; i++)
25         {
26             cin >> x;
27             for (int j = 1; x<=T && j <= n; j++)
28             {
29                 has_train[x][j][0] = 1;
30                 x += t[j];
31             }
32         }
33
34         cin >> m2;
35         for (int i = 0; i < m2; i++)
36         {
37             cin >> x;
38             for (int j = n; x <=T && j >1; j--)
39             {
40                 has_train[x][j][1] = 1;
41                 x += t[j-1];
42             }
43         }
44
45
46         for (int i = 1; i <= n - 1; i++)  dp[T][i] = INF;
47         dp[T][n] = 0;
48         for (int i = T - 1; i >= 0; i--)
49         {
50             for (int j = 1; j <= n; j++)
51             {
52                 dp[i][j] = dp[i + 1][j] + 1;    //等待一个单位
53                 if (j < n && has_train[i][j][0] && i + t[j] <= T)
54                     dp[i][j] = min(dp[i][j], dp[i + t[j]][j + 1]);  //往右
55                 if (j>1 && has_train[i][j][1] && i + t[j - 1] <= T)
56                     dp[i][j] = min(dp[i][j], dp[i + t[j - 1]][j - 1]); //往左
57             }
58         }
59         cout << "Case Number " << ++kase << ": ";
60         if (dp[0][1] >= INF)  cout << "impossible" << endl;
61         else cout << dp[0][1] << endl;
62     }
63     return 0;
64 }
时间: 2024-10-10 07:50:28

UVa 1025 城市里的间谍的相关文章

UVA城市里的间谍

Solution 这一道题的状态很好想,用f[i][j]来表示第i秒在第j个车站至少要等多久,预处理出在第i秒第j个车站是否有车,注意数据可能会超过T,要注意清零. Code #include<bits/stdc++.h> using namespace std; const int N=55; int t[N],ht[10005][N][2],cnt,k,n,T,m1,f[10005][N]; int main(){ freopen("a.in","r"

动态规划初步--城市里的间谍

一.题目 某城市的地铁是线性的,有n(2 ≤ n ≤ 50)个车站,从左到右编号为1~n.有M1辆车从第一站开始往右开,还有M2辆从第n站开始往左开.在时刻0,Mario从第一站出发,目的是在T时刻会见在n站的一个间谍.要求其在车站的等待时间足够短. 二.解题思路 状态由当前时间和当前所在站决定,我们可以用dp[i][j]表示在时刻t,第i站最少还需要等待的时间.易只T时刻的情况容易确定, dp[T][j] = (j == n ? INF : 0),而T时刻之前的dp值,可以由T时刻及其之后的决

uva1025城市里的间谍

某城市地铁是线性的,有n(2≤n≤50)个车站,从左到右编号1~n.有M1辆列车从第1站开始往右开,还有M2辆列车从第n站开始往左开. 列车在相邻站台间所需的运行时间是固定的,因为所有列车的运行速度是相同的. 在时刻0,Mario从第1站出发,目的在时刻T(0≤T≤200)会见车站n的一个间谍.在车站等车时容易被抓,所以她决定尽量躲在开动的火车上,让在车站等待的时间尽量短. 列车靠站停车时间忽略不计,且Mario身手敏捷,即时两辆方向不同的列车在同一时间靠站,Mario也能完成换乘. [输入格式

UVA1025 城市里的间谍 A Spy in the Metro

#include<iostream> #include<cstdio> #include<memory.h> using namespace std; #define min(a,b) (a)<(b)?(a):(b) #define INF 0x3f3f3f3f #define N 55 #define M 220 int k,n,T,M1,M2,a,b; int t[N]; int f[M][N]; bool trn[M][N][2]; int main(){

UVA 1025 A Spy in the Metro(DP)

Secret agent Maria was sent to Algorithms City to carry out an especially dangerous mission. After several thrilling events we find her in the first station of Algorithms City Metro, examining the time table. The Algorithms City Metro consists of a s

UVA 1025 A Spy in the Metro(DAG dp)

UVA 1025 1 #include<cstdio> 2 #include<iostream> 3 #include<queue> 4 #include<vector> 5 #include<stack> 6 #include<set> 7 #include<string> 8 #include<cstring> 9 #include<math.h> 10 #include<algorith

UVA 1025 - A Spy in the Metro (DAG的动态规划)

第一遍,刘汝佳提示+题解:回头再看!!! POINT: dp[time][sta]; 在time时刻在车站sta还需要最少等待多长时间: 终点的状态很确定必然是的 dp[T][N] = 0 ---即在T时刻的时候正好达到N站点 我们可以 从终点的状态往起始的状态转化, 一步步走就可以了. has_train[t][i][0]; t时刻在i车站是否有往右开的火车 has_train[t][i][1]; t时刻在i车站是否有往左开的火车 #include <iostream>#include &l

uva 1025,城市的间谍

题目链接:https://uva.onlinejudge.org/external/10/1025.pdf 题意: 地铁是线性的,有n个站,编号(1~n),M1辆从左至右的车,和M2辆从右至左的车,发车时刻给出,然后是,每两个站之间要跑多长时间.一个间谍要从1车站到n车站,但是他要求等车的时间最短,不然间谍会被抓,有可能到不了,输出impossible. 分析: 影响每一步的决策只有两个因素,1,时刻,2,哪一个车站.那么DP状态就出来了DP[T][n]在T时刻,第n个站还要等多少分钟. 状态转

UVa 1025 A Spy in the Metro(动态规划)

传送门 Description Secret agent Maria was sent to Algorithms City to carry out an especially dangerous mission. After several thrilling events we find her in the first station of Algorithms City Metro, examining the time table. The Algorithms City Metro