博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2015 多校联赛 ——HDU5335(Walk out)
阅读量:6360 次
发布时间:2019-06-23

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

 

Walk Out

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 2001    Accepted Submission(s): 376

Problem Description
In an 
nm maze, the right-bottom corner is the exit (position 
(n,m) is the exit). In every position of this maze, there is either a 
0 or a 
1 written on it.
An explorer gets lost in this grid. His position now is 
(1,1), and he wants to go to the exit. Since to arrive at the exit is easy for him, he wants to do something more difficult. At first, he'll write down the number on position 
(1,1). Every time, he could make a move to one adjacent position (two positions are adjacent if and only if they share an edge). While walking, he will write down the number on the position he's on to the end of his number. When finished, he will get a binary number. Please determine the minimum value of this number in binary system.
 

 

Input
The first line of the input is a single integer 
T (T=10), indicating the number of testcases. 
For each testcase, the first line contains two integers 
n and 
m (1n,m1000). The 
i-th line of the next 
n lines contains one 01 string of length 
m, which represents 
i-th row of the maze.
 

 

Output
For each testcase, print the answer in binary system. Please eliminate all the preceding 
0 unless the answer itself is 
0 (in this case, print 
0 instead).
 

 

Sample Input
2 2 2 11 11 3 3 001 111 101
 

 

Sample Output
111 101

 

 

从矩阵左上角走到右下角,而且经过的数字会被以二进制的方式记录下来,求最小

思路:如果第一个位置是1,只能一直走下 或者 右,找出最小值

           如果第一个位置是0,找到离右下角最近的1,然后进行上面步骤

但是当时并没有实现,超时了,感觉有点麻烦 - -,用搜索不知道怎么记录值,而且容易超

 标码中的用for循环求解,感觉好机智(⊙o⊙)…,找到最近的位置 x + y,找出这些中最小的值输出,再讲它们进行标记。

P:每次离右下角i + j的点是那些固定的,在这些固定的周围继续找。

必须扩充栈用C++,否则爆掉。    自己测试时就说怎么一直有问题 TAT

#include 
#include
#include
#pragma comment(linker, "/STACK:102400000,102400000")using namespace std;int T, n, m,tot;char S[1100][1100];bool used[1100][1100];char ch = '0';char ch1 = '1';void bfs(int x,int y){ if(used[x][y]) return ; used[x][y] = true; if(S[x][y] == ch1) return; if (x>1) bfs(x-1,y); if (x
1) bfs(x,y-1); if (y

  

转载于:https://www.cnblogs.com/Przz/p/5409808.html

你可能感兴趣的文章
MFC对话框编程-图片控件
查看>>
nodejs启动webserver服务
查看>>
小偷被抓叫嚣:我不偷警察没饭吃
查看>>
python初学—-实现excel里面读数据进行排序
查看>>
用户体验升级后 “谁行谁上”让百度Q4财报更有底气
查看>>
直播相关学习链接
查看>>
使用RPM包工具和源码包编译安装Linux应用程序
查看>>
VoIP——开启免费通话新时代的先锋
查看>>
Linux下rsync的用法
查看>>
apache虚拟主机、日志轮询、日志统计、去版本优化
查看>>
java代码实现开启openoffice服务和关闭sffice.exe进程
查看>>
docker镜像的使用方法
查看>>
提升HTTPS安全评级
查看>>
iOS开发过程中的心得
查看>>
QOS配置命令
查看>>
使用 MPI for Python 并行化遗传算法
查看>>
paramiko安装及使用
查看>>
我的友情链接
查看>>
《Python网络数据采集》读书笔记(六)
查看>>
Linux必学的60个命令
查看>>