博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 825 Walking on the Safe Side(DP)
阅读量:5142 次
发布时间:2019-06-13

本文共 3227 字,大约阅读时间需要 10 分钟。

 

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}

 

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 streetsN. 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.

 

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.

 

14 512 23 3 54

 

4

本题算法上没难度  起点方法设为1  每一个点的方法等于其上方的点的方法数加上其左边的点的方法数    输入实在搞不懂。

凝视掉的部分求指错!!

#include
#include
#include
using namespace std;const int N = 1005;int d[N][N], w, n;char s[N]; bool g[N][N];int main(){ int unsafe, t, row; scanf("%d", &t); while (t--) { gets(s); memset(g, 1, sizeof(g)); scanf("%d %d\n", &w, &n); for(int i = 1; i <= w; i++) {// scanf("%d", &row);// while(getchar()==' ')// {// scanf("%d", &unsafe);// g[row][unsafe] = 0;// } gets(s); for(int j = 1, unsafe = 0; j <= strlen(s); j++) { if(isdigit(s[j])) unsafe = unsafe * 10 + s[j] - '0'; else { g[row][unsafe] = 0; unsafe = 0; } } } memset(d, 0, sizeof(d)); d[1][0] = 1; for(int i = 1; i <= w; ++i) for(int j = 1; j <= n; ++j) { if(g[i][j]) d[i][j] = d[i - 1][j] + d[i][j - 1]; } printf("%d\n", d[w][n]); if(t) printf("\n"); } return 0;}


转载于:https://www.cnblogs.com/jhcelue/p/7098266.html

你可能感兴趣的文章
深度剖析post和get的区别
查看>>
云的世界
查看>>
WPF border属性
查看>>
初识DetNet:确定性网络的前世今生
查看>>
5G边缘网络虚拟化的利器:vCPE和SD-WAN
查看>>
linux下启动tomcat----Cannot find ./catalina.sh
查看>>
adb的配置
查看>>
MATLAB基础入门笔记
查看>>
进程、线程、应用程序之间的关系
查看>>
20171020java学习总结——execl 批量导入
查看>>
如何自绘树形控件(QQ好友列表)
查看>>
web异步开发——ajax
查看>>
将WPF版的弹幕播放器给优化了一下
查看>>
Qt5 动态库的创建与使用
查看>>
面向对象设计
查看>>
Sqoop迁移Hadoop与RDBMS间的数据
查看>>
[label][JavaScript]读nowmagic - js词法作用域、调用对象与闭包
查看>>
模板模式
查看>>
PAT 1014 福尔摩斯的约会
查看>>
ssh2整合中的一些问题
查看>>