Walk Out

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1977    Accepted Submission(s):
373

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
 
Author
XJZX
 
Source
 
Recommend
wange2014   |   We have carefully selected several
similar problems for you:  5338 5337 5336 5334 5333 
题目意思:
给定一个n*m的图,图上的每个点上的值为0或1,让你找到一条路,所经过的01序列最小。
从当前点来看,如果能走0肯定要走0,如果没有0才会走1,我们可以先找到能到的最远的0,然后从最远的0处,向下和向右两个方向搜索了,
(斜行递推,从第一个行开始标记下一行要走的点,然后在下一行的时候检查那些点被标记了,说明这些点可以走,然后再标记下一行的,
直到倒数第二行,由于下一行的点要么是0,要么是1,所以可以直接输出,即使下一行有多个点可以走,但是它都是0或者1)
这样处理可以排除特殊情况
,(直接从两个方向搜,可能会漏掉往左走最终到达的这个路径上全是0的这种情况)。

#include <iostream>
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
#include <queue>
#include <queue>
#define SIZE 1005
#define maxn 2010
using namespace std;
int n,m;
char Map[SIZE][SIZE];
int visit[SIZE][SIZE];
int d[SIZE][SIZE];
int VIS[maxn][maxn];
int tot;
int dir[][]={,-,,,-,,,};
struct node
{
int x,y,cnt;
};
queue <node> que;
void init()
{
tot=;
memset(visit,,sizeof(visit));
memset(d,,sizeof(d));
memset(VIS,,sizeof(VIS));
}
void dfs(int x,int y)
{
if(visit[x][y]==)
return ;
visit[x][y]=;
if(Map[x][y]=='')
return ;
d[x][y]=;
if(x+y>tot)
tot=x+y;
if(x>)
dfs(x-,y);
if(x<n)
dfs(x+,y);
if(y>)
dfs(x,y-);
if(y<m)
dfs(x,y+);
}
void bfs()
{
if(Map[][]=='')
{
node a,b,c;
a.x=; a.y=; a.cnt=;
que.push(a);
VIS[][]=;
d[][]=;
while(!que.empty())
{
b=que.front();
que.pop();
if(b.cnt > tot)
tot=b.cnt;
for(int i=;i<;i++)
{
int next_x=b.x+dir[i][];
int next_y=b.y+dir[i][];
if( (<=next_x) &&(next_x<=n) && (<=next_y) && (next_y<=m) && VIS[next_x][next_y]== && Map[next_x][next_y]=='')
{
c.x=next_x; c.y=next_y;
c.cnt=next_x+next_y;
que.push(c);
VIS[next_x][next_y]=;
d[next_x][next_y]=;
}
} }
}
else
return ; }
void solve()
{
if(tot==m+n)
{
printf("0\n");
return ;
}
if(tot==)
{
tot=; //代表起始点为(1,1)
d[][]=;
printf("");
}
for(int p=tot;p<n+m;p++)
{
int flag=;
for(int q=max(p-m,);q<=min(p-,n);q++) //q代表行号
{
if(d[q][p-q])
{
int x=(Map[q][p-q+]-'')?:;
int y=(Map[q+][p-q]-'')?:;
flag=min(flag,x);
flag=min(flag,y);
}
}
for(int q=max(p-m,);q<=min(p-,n);q++)
{
if(d[q][p-q])
{
int x=(Map[q][p-q+]-'')?:;
int y=(Map[q+][p-q]-'')?:;
if(x==flag)
d[q][p-q+]=;
if(y==flag)
d[q+][p-q]=;
}
}
printf("%d",flag);
}
printf("\n");
}
int main()
{
//freopen("test.txt","r",stdin);
int t;
scanf("%d",&t);
while(t --)
{
init();
scanf("%d%d%*c",&n,&m);
// printf("%d %d %d\n",n,m,tot);
for(int i = ; i <= n ; i ++)
{
scanf("%s",&Map[i][]);
}
// getchar();
//dfs(1,1);
bfs();
// printf("tot: %d\n",tot);
solve();
}
return ;
}
 

hdu5335(搜索)的更多相关文章

  1. SQLSERVER走起微信公众帐号已经开通搜狗微信搜索

    SQLSERVER走起微信公众帐号已经开通搜狗微信搜索 请打开下面链接 http://weixin.sogou.com/gzh?openid=oIWsFt-hiIb_oYqQHaBMoNwRB2wM ...

  2. solr_架构案例【京东站内搜索】(附程序源代码)

    注意事项:首先要保证部署solr服务的Tomcat容器和检索solr服务中数据的Tomcat容器,它们的端口号不能发生冲突,否则web程序是不可能运行起来的. 一:solr服务的端口号.我这里的sol ...

  3. SQLServer地址搜索性能优化例子

    这是一个很久以前的例子,现在在整理资料时无意发现,就拿出来再改写分享. 1.需求 1.1 基本需求: 根据输入的地址关键字,搜索出完整的地址路径,耗时要控制在几十毫秒内. 1.2 数据库地址表结构和数 ...

  4. HTML5轻松实现搜索框提示文字点击消失---及placeholder颜色的设置

    在做搜索框的时候无意间发现html5的input里有个placeholder属性能轻松实现提示文字点击消失功能,之前还傻傻的在用js来实现类似功能... 示例 <form action=&quo ...

  5. bzoj1079--记忆化搜索

    题目大意:有n个木块排成一行,从左到右依次编号为1~n.你有k种颜色的油漆,其中第i种颜色的油漆足够涂ci个木块.所有油漆刚好足够涂满所有木块,即c1+c2+...+ck=n.相邻两个木块涂相同色显得 ...

  6. bzoj3208--记忆化搜索

    题目大意: 花花山峰峦起伏,峰顶常年被雪,Memphis打算帮花花山风景区的人员开发一个滑雪项目.    我们可以把风景区看作一个n*n的地图,每个点有它的初始高度,滑雪只能从高处往低处滑[严格大于] ...

  7. Android中通过ActionBar为标题栏添加搜索以及分享视窗

    在Android3.0之后,Google对UI导航设计上进行了一系列的改革,其中有一个非常好用的新功能就是引入的ActionBar,他用于取代3.0之前的标题栏,并提供更为丰富的导航效果.Action ...

  8. 一步步开发自己的博客 .NET版(5、Lucenne.Net 和 必应站内搜索)

    前言 这次开发的博客主要功能或特点:    第一:可以兼容各终端,特别是手机端.    第二:到时会用到大量html5,炫啊.    第三:导入博客园的精华文章,并做分类.(不要封我)    第四:做 ...

  9. Go语言实战 - 我需要站内搜索

    山坡网的用户抱怨"为什么搜索'二鬼子李富贵'找不到'二鬼子汉奸李富贵'?我用百度搜都能找到." 当时我就滴汗了,用户说的有道理,应该要能搜索到. 之前的方案很简单,用户输入的字串会 ...

随机推荐

  1. 【PD】PowerDesigner生成数据字典

    1.首先说明我使用的环境 --------------------------------第一种:不按模板导出导出数据字典----------------------------- 2.打开PDM模型 ...

  2. excludepathpatterns 无效

    踩坑了,调了好久才调出来. 原因:  访问的API /XXX 已经转换为 /error 了.  把“/error” 也加入 excludepathpatterns 里面即可.

  3. [bzoj2780][Spoj8093]Sevenk Love Oimaster_广义后缀自动机

    Sevenk Love Oimaster bzoj-2780 Spoj-8093 题目大意:给定$n$个大串和$m$次询问,每次给出一个字符串$s$询问在多少个大串中出现过. 注释:$1\le n\l ...

  4. 压力测试webbench(转)

    最近app需要搭建后台,故此研究一下,靠谱的后台服务器..网传nginx 能达到的并发数量比apache 高. LAMP or LNMP ? 根据需求测试结果来进行选择. 首先是安装LNMP测试完后 ...

  5. java Map集合对比分析

    1.Map:Map是所有map集合的顶级父接口,用于key/value形式的键值对,其中每一个key都映射到一个值,key不能重复. 2.TreeMap:该map将存储的键值对进行默认排序,并且还能够 ...

  6. eclipse发布项目到tomcat部署目录

    1.在eclipse下建立Dynamic Web Project工程zhgy,在使用eclipse中new一个tomcat,通过启动该tomcat来发布Dynamic Web Project的时候,其 ...

  7. Java 等额本金等额本息工具类

    原文:http://www.open-open.com/code/view/1449034309983 等额本息: /** * Description:等额本息工具类 * Copyright: Cop ...

  8. window环境下搭建SVN服务器

    <span style="font-family: Arial; rgb(255, 255, 255);">第一步:准备工具:</span> 1.SVN服务 ...

  9. jmeter的master远程运行和停止slave

    jmeter可以部署成master-slave或者叫client-server模式,一个master(client)可以同时控制多个slave(server). 在linux系统下,master(cl ...

  10. JAVA学习(一):Java介绍及其平台、开发环境的配置与搭建

    Java介绍及其平台.开发环境的配置与搭建 1.Java的介绍 Java是一种面向对象的编程语言,具有跨平台.可移植.分布式.简单.可扩展等诸多特性.Java能够进行桌面应用.Web应用.分布式系统及 ...