Walk Out

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

Total Submission(s): 141    Accepted Submission(s): 17

Problem Description
In an n∗m 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 (1≤n,m≤1000).
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
 
Source

求从1,1到n。n的路径中。得到的二进制数最小是什么

方法:

假设1,1是0那么搜索出全部可达的0号点,前缀0为0,所以能够从这些位置出发。

然后有了一个1,。

那么仅仅要路径最短的,同一时候得到的二进制数最小的。

从全部可出发的点出发,做bfs,计算到n,n的最短路。

然后从n,n做bfs看,那些位置是在最短路上的。

然后从全部可出发的点出发,bfs。

假设存在能到的0点。

则从这些点出发。否则从到的1点出发。

这样贪心做就可以。直到到n。n点

#pragma comment(linker, "/STACK:102400000,102400000")
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
#define maxn 1001 char ma[maxn][maxn];
int check[maxn][maxn];
int dep[maxn][maxn]; struct Node{
int x,y;
Node(int _x=0,int _y=0):x(_x),y(_y){}
}; queue<Node> que;
vector<int> ans;
vector<Node> one;
vector<Node> zero;
int n,m;
void dfs(int x,int y){
if(check[x][y] || x == n || y == m || x < 0 || y < 0 || ma[x][y] == '1') return;
que.push(Node(x,y));
check[x][y] = 1;
dfs(x+1,y);
dfs(x,y+1);
dfs(x-1,y);
dfs(x,y-1);
}
void work(){
while(que.size() > 0)
que.pop();
if(ma[0][0] == '1'){
check[0][0] = 1;
que.push(Node(0,0));
}
else {
dfs(0,0);
}
}
void bfs(){
Node a;
while(que.size() > 0){
a = que.front();
que.pop();
if(a.x + 1 < n && a.y < m && check[a.x+1][a.y] == 0){
que.push(Node(a.x+1,a.y));
check[a.x+1][a.y] = 1;
dep[a.x+1][a.y] = dep[a.x][a.y] + 1;
}
if(a.x < n && a.y + 1 < m && check[a.x][a.y+1] == 0){
que.push(Node(a.x,a.y+1));
check[a.x][a.y+1] = 1;
dep[a.x][a.y+1] = dep[a.x][a.y] + 1;
}
}
}
int mark[maxn][maxn];
void nidfs(int x,int y){
mark[x][y] = 1;
if(x-1>=0 && y >= 0 && mark[x-1][y] == 0 && dep[x-1][y] == dep[x][y] - 1 && dep[x-1][y] > 0)
nidfs(x-1,y);
if(x >= 0 && y-1>=0 && mark[x][y-1] == 0 && dep[x][y-1] == dep[x][y] - 1 && dep[x][y-1] > 0)
nidfs(x,y-1);
} void getans(){
ans.clear();
Node a;
while(1){
one.clear();
zero.clear();
while(que.size() > 0){
a = que.front();
que.pop();
if(a.x == n -1 && a.y == m -1 ) return ;
if(a.x + 1 < n && a.y < m && check[a.x+1][a.y] == 0&& dep[a.x+1][a.y] == dep[a.x][a.y] + 1 && mark[a.x+1][a.y]){
if(ma[a.x+1][a.y] == '1') one.push_back(Node(a.x+1,a.y));
else zero.push_back(Node(a.x+1,a.y));
check[a.x+1][a.y] = 1;
}
if(a.x < n && a.y + 1< m && check[a.x][a.y+1] == 0 && dep[a.x][a.y+1] == dep[a.x][a.y] + 1 && mark[a.x][a.y+1]){
if(ma[a.x][a.y+1] == '1') one.push_back(Node(a.x,a.y+1));
else zero.push_back(Node(a.x,a.y+1));
check[a.x][a.y+1] = 1;
}
}
if(zero.size() > 0){
ans.push_back(0);
for(int i = 0;i < zero.size();i++)
que.push(zero[i]);
}
else {
ans.push_back(1);
for(int i = 0;i < one.size();i++)
que.push(one[i]);
}
}
}
int main(){
int t;
scanf("%d",&t);
while(t--){
scanf("%d%d",&n,&m);
for(int i = 0;i < n; i++){
scanf("%s",ma[i]);
}
memset(check,0,sizeof(check));
work();
memset(dep,0,sizeof(dep));
bfs();
// for(int i = 0;i < n; i++){
// for(int j = 0;j < m; j++){
// printf("%d ",dep[i][j]);
// }cout<<endl;
// }
// cout<<endl;
memset(mark,0,sizeof(mark));
nidfs(n-1,m-1); memset(check,0,sizeof(check));
work();
getans();
// for(int i = 0;i < n; i++){
// for(int j = 0;j < m; j++){
// printf("%d ",dep[i][j]);
// }cout<<endl;
// }
if(ans.size() == 0 && ma[0][0] =='0'){
printf("0\n");
}
else {
if(ma[0][0] == '1') printf("1");
for(int i = 0;i < ans.size(); i++)
printf("%d",ans[i]);
printf("\n");
} }
return 0; }
/*
20
2 2
11
11
3 3
001
111
101
3 3
111
111
111
3 3
000
000
000
3 3
001
011
111
*/

hdu 5335 Walk Out 搜索+贪心的更多相关文章

  1. hdu 5335 Walk Out (搜索)

    题目链接: hdu 5335 Walk Out 题目描述: 有一个n*m由0 or 1组成的矩形,探险家要从(1,1)走到(n, m),可以向上下左右四个方向走,但是探险家就是不走寻常路,他想让他所走 ...

  2. HDU 5335——Walk Out——————【贪心】

    Walk Out Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Su ...

  3. HDU 5335 Walk Out BFS 比较坑

    H - H Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status ...

  4. HDU 6034---Balala Power!(搜索+贪心)

    题目链接 Problem Description Talented Mr.Tang has n strings consisting of only lower case characters. He ...

  5. hdu 5335 Walk Out (2015 Multi-University Training Contest 4)

    Walk Out                                                                         Time Limit: 2000/10 ...

  6. 2015 Multi-University Training Contest 4 hdu 5335 Walk Out

    Walk Out Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Su ...

  7. hdu 5335 Walk Out(bfs+斜行递推) 2015 Multi-University Training Contest 4

    题意—— 一个n*m的地图,从左上角走到右下角. 这个地图是一个01串,要求我们行走的路径形成的01串最小. 注意,串中最左端的0全部可以忽略,除非是一个0串,此时输出0. 例: 3 3 001 11 ...

  8. HDU 5335 Walk Out

    题意:在一个只有0和1的矩阵里,从左上角走到右下角, 每次可以向四个方向走,每个路径都是一个二进制数,求所有路径中最小的二进制数. 解法:先bfs求从起点能走到离终点最近的0,那么从这个点起只向下或向 ...

  9. HDU 5335 Walk Out(多校)

    Walk Out Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Su ...

随机推荐

  1. Oracle 常见的33个等待事件

    一. 等待事件的相关知识: 1.1 等待事件主要可以分为两类,即空闲(IDLE)等待事件和非空闲(NON-IDLE)等待事件. 1). 空闲等待事件指Oracle正等待某种工作,在诊断和优化数据库的时 ...

  2. Statspack的使用

    Statspack是Oracle 8i以上提供的一个非常好的性能监控与诊断工具,基本上全部包含了BSTAT/ESTAT的功能,更多的信息可以参考附带文档$ORACLE_HOME/rdbms/admin ...

  3. 最小生成树基础 (Kruskal)

    最小生成树 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status ...

  4. Regexp-Utils:身份证号校验

    ylbtech-Regexp-Utils:身份证号校验 1.返回顶部 1.方法 var idCardNoUtil = { /*省,直辖市代码表*/ provinceAndCitys: { 11: &q ...

  5. Redis学习笔记(十) 命令进阶:事务操作

    原文链接:http://doc.redisfans.com/transaction/index.html Redis中也提供了对于事务的支持,由于Redis是单线程处理Client的请求,所以实现起来 ...

  6. HDU 1575 矩阵快速幂裸题

    题意:中文题 我就不说了吧,... 思路:矩阵快速幂 // by SiriusRen #include <cstdio> #include <cstring> using na ...

  7. 算法入门经典第六章 例题6-14 Abbott的复仇(Abbott's Revenge)BFS算法实现

    Sample Input 3 1 N 3 3 1 1 WL NR * 1 2 WLF NR ER * 1 3 NL ER * 2 1 SL WR NF * 2 2 SL WF ELF * 2 3 SF ...

  8. tomcat配置一个服务监听两个端口

    <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" ...

  9. Oracle中的数据字典技术及常用数据字典总结

    一.Oracle数据字典 数据字典是Oracle存放有关数据库信息的地方,其用途是用来描述数据的.比如一个表的创建者信息,创建时间信息,所属表空间信息,用户访问权限信息等.当用户在对数据库中的数据进行 ...

  10. vue中使用UEditor编辑器 -- 2

    1:下载ueditor下来,放在vue项目中的static文件夹下   2:创建ueditor编辑界面 3:椰~~~~~此时已经可以使用了 但是你会发现   (黑人脸)what the fuck??? ...