uva 825 Walking on the Safe Side (dp)

来源:互联网 发布:网络兼职诈骗案例 编辑:程序博客网 时间:2024/05/22 23:59

uva 825 Walking on the Safe Side

Square City is a very easy place for people to walk around. The two-way streets run North-South or East-West dividing the city into regular blocks. Most street intersections are safe for pedestrians to cross. In some of them, however, crossing is not safe and pedestrians are forced to use the available underground passages. Such intersections are avoided by walkers. The entry to the city park is on the North-West corner of town, whereas the railway station is on the South-East corner.

Suppose you want to go from the park to the railway station, and do not want to walk more than the required number of blocks. You also want to make your way avoiding the underground passages, that would introduce extra delay. Your task is to determine the number of different paths that you can follow from the park to the station, satisfying both requirements.

The example in the picture illustrates a city with 4 E-W streets and 5 N-S streets. Three intersections are marked as unsafe. The path from the park to the station is 3 + 4 = 7 blocks long and there are 4 such paths that avoid the underground passages.

\epsfbox{p825.eps}

Input
The input begins with a single positive integer on a line by itself indicating the number of the cases following, each of them as described below. This line is followed by a blank line, and there is also a blank line between two consecutive inputs.

The first line of the input contains the number of East-West streets W and the number of North-South streets N. Each one of the following W lines starts with the number of an East-West street, followed by zero or more numbers of the North-South crossings which are unsafe. Streets are numbered from 1.

Output
For each test case, the output must follow the description below. The outputs of two consecutive cases will be separated by a blank line.

The number of different minimal paths from the park to the station avoiding underground passages.

Sample Input

1

4 5
1
2 2
3 3 5
4

Sample Output

4

题目大意:一个n * m的广场,人在(1, 1)点要到(n, m)点,人只能往左或者往下走。广场上有障碍,障碍不能走。

解题思路:dp[i][j] += dp[i - 1][j] + dp[i][j - 1]

#include <cstdio>#include <cstring>#include <algorithm>#include <cmath>#include <cstdlib>#define N 1005using namespace std;typedef long long ll;int n, m, gra[N][N], dp[N][N];char str[N];void ini() {    memset(gra, 0, sizeof(gra));    memset(dp, 0, sizeof(dp));}void Draw() {    for (int i = 0; i < n; i++) {          int r;        scanf("%d", &r);          gets(str);          int len = strlen(str), num = 0;          for (int i = 0; i <= len; i++) {              if (str[i] >= '0' && str[i] <= '9')                  num = num * 10 + str[i] - '0';              else {                  gra[r - 1][num - 1] = 1;                  num = 0;              }          }      }  }void DP() {    dp[0][0] = 1;    for (int i = 0; i < n; i++) {        for (int j = 0; j < m; j++) {            if (i == 0 && j == 0) continue;            if (gra[i][j] == 1) continue;            if (i == 0) {                if (gra[i][j - 1] != 1) {                    dp[i][j] += dp[i][j - 1];                   }            } else if (j == 0) {                if (gra[i - 1][j] != 1) {                    dp[i][j] += dp[i - 1][j];                }            } else if (gra[i][j - 1] == 1 && gra[i - 1][j] == 1) {                continue;               } else if (gra[i][j - 1] == 1) {                dp[i][j] += dp[i - 1][j];               } else if (gra[i - 1][j] == 1) {                dp[i][j] += dp[i][j - 1];            } else {                dp[i][j] += dp[i - 1][j] + dp[i][j - 1];            }           }    }}int main() {    int T;    scanf("%d", &T);    while (T--) {        scanf("%d %d", &n, &m);        ini();        Draw();        DP();        printf("%d\n", dp[n - 1][m - 1]);        if (T) printf("\n");    }    return 0;}
0 0
原创粉丝点击