多校4-Walk Out 分类: 比赛 2015-08-02 17:15 21人阅读 评论(0) 收藏
Walk Out
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 2724 Accepted Submission(s): 548
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
经过一下午的努力,终于AC了,还是要靠特殊的数据测题啊
加组数据
1
5 5
00000
11110
00000
01111
00000
Sample Output
0
#include <iostream>
#include <cstdio>
#include <cmath>
#include <map>
#include <queue>
#include <stack>
#include <cstring>
#include <cstdlib>
#include <string>
#include <algorithm>
#define INF 0x3f3f3f3f
#define PI acos(-1.0)
#define eps 1e-9
#define WW freopen("output","w",stdout)
#define RR freopen("input","r","stdin")
using namespace std;
const int MAX = 1010;
struct node
{
int x;
int y;
} q[2*MAX];
char str[MAX][MAX];
bool vis[MAX][MAX];
int n,m;
int top;
int sum;
int dir[][2]= {{0,1},{1,0},{0,-1},{-1,0}};
bool Judge(int x,int y)
{
if(x>=0&&x<n&&y>=0&&y<m)
{
return true;
}
return false;
}
void bfs()//如果str[0][0]=='0',则找到一个通过一系列的零可以到达且离终点最近
{
memset(vis,false,sizeof(vis));
queue<node>Q;
node a,b;
a.x=0;
a.y=0;
Q.push(a);
vis[0][0]=true;
while(!Q.empty())
{
b=Q.front();
Q.pop();
for(int i=0; i<4; i++)
{
a.x=b.x+dir[i][0];
a.y=b.y+dir[i][1];
if(!Judge(a.x,a.y)||vis[a.x][a.y])
{
continue;
}
if(str[a.x][a.y]=='1')
{
if(a.x+a.y>sum)
{
top=0;
q[top].x=a.x;
q[top].y=a.y;
top++;
sum=a.x+a.y;
}
else if(a.x+a.y==sum)
{
q[top].x=a.x;
q[top].y=a.y;
top++;
}
}
else
{
if(a.x+a.y==n+m-2)//重要的一点,因为开始没有写WA了好几次。
{
top=0;
return ;
}
Q.push(a);
}
vis[a.x][a.y]=true;
}
}
}
void DFS()
{
memset(vis,false,sizeof(vis));
queue<node>q0;
queue<node>q1;
node a,b;
for(int i=0; i<top; i++)
{
vis[q[i].x][q[i].y]=true;
q0.push(q[i]);
}
printf("1");
if(vis[n-1][m-1])
{
return ;
}
while(1)
{
int flag=1;
while(!q0.empty())
{
b=q0.front();
q0.pop();
for(int i=0; i<2; i++)
{
a.x=b.x+dir[i][0];
a.y=b.y+dir[i][1];
if(!Judge(a.x,a.y)||vis[a.x][a.y])
{
continue;
}
if(str[a.x][a.y]=='0')
{
flag=0;
}
q1.push(a);
vis[a.x][a.y]=true;
}
}
printf("%d",flag);
if(vis[n-1][m-1])
{
return ;
}
while(!q1.empty())
{
b=q1.front();
q1.pop();
if(flag)
{
q0.push(b);
}
else
{
if(str[b.x][b.y]=='0')
{
q0.push(b);
}
}
}
}
}
int main()
{
int T;
scanf("%d",&T);
while(T--)
{
scanf("%d %d",&n,&m);
top=0;
sum=0;
for(int i=0; i<n; i++)
{
scanf("%s",str[i]);
}
if(str[0][0]=='1')
{
q[0].x=0;
q[0].y=0;
top++;
}
else
{
bfs();
}
if(top==0)
{
printf("0");
}
else
{
DFS();
}
printf("\n");
}
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
多校4-Walk Out 分类: 比赛 2015-08-02 17:15 21人阅读 评论(0) 收藏的更多相关文章
- 博弈论入门小结 分类: ACM TYPE 2014-08-31 10:15 73人阅读 评论(0) 收藏
文章原地址:http://blog.csdn.net/zhangxiang0125/article/details/6174639 博弈论:是二人或多人在平等的对局中各自利用对方的策略变换自己的对抗策 ...
- PIGS 分类: POJ 图论 2015-08-10 09:15 3人阅读 评论(0) 收藏
PIGS Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 18209 Accepted: 8277 Description Mir ...
- bzoj 1041 圆上的整点 分类: Brush Mode 2014-11-11 20:15 80人阅读 评论(0) 收藏
这里先只考虑x,y都大于0的情况 如果x^2+y^2=r^2,则(r-x)(r+x)=y*y 令d=gcd(r-x,r+x),r-x=d*u^2,r+x=d*v^2,显然有gcd(u,v)=1且u&l ...
- Hdu 1429 胜利大逃亡(续) 分类: Brush Mode 2014-08-07 17:01 92人阅读 评论(0) 收藏
胜利大逃亡(续) Time Limit : 4000/2000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) Total Subm ...
- strace使用详解(转) 分类: shell ubuntu 2014-11-27 17:48 134人阅读 评论(0) 收藏
(一) strace 命令 用途:打印 STREAMS 跟踪消息. 语法:strace [ mid sid level ] ... 描述:没有参数的 strace 命令将所有的驱动程序和模块中的 ...
- 深入N皇后问题的两个最高效算法的详解 分类: C/C++ 2014-11-08 17:22 117人阅读 评论(0) 收藏
N皇后问题是一个经典的问题,在一个N*N的棋盘上放置N个皇后,每行一个并使其不能互相攻击(同一行.同一列.同一斜线上的皇后都会自动攻击). 一. 求解N皇后问题是算法中回溯法应用的一个经典案例 回溯算 ...
- c++ 字符串流 sstream(常用于格式转换) 分类: C/C++ 2014-11-08 17:20 150人阅读 评论(0) 收藏
使用stringstream对象简化类型转换 C++标准库中的<sstream>提供了比ANSI C的<stdio.h>更高级的一些功能,即单纯性.类型安全和可扩展性.在本文中 ...
- 合并k个已排序的链表 分类: leetcode 算法 2015-07-09 17:43 3人阅读 评论(0) 收藏
最先想到的是把两个linked lists 合并成一个. 这样从第一个开始一个一个吞并,直到所有list都被合并. class ListNode:# Definition for singly-lin ...
- IOS之按钮控件--Button全解析及使用 分类: ios技术 2015-01-17 17:09 169人阅读 评论(0) 收藏
IOS开发中伴随我们始终的 最常用的几个空间之一 -- UIButton 按钮,对于button今天在此做一些浅析,并介绍下主流用法以及常见问题解决办法. 首先是继承问题,UIButton继承于UIC ...
随机推荐
- linux:ACL权限
ACL权限是为了防止权限不够用的情况,一般的权限有所有者.所属组.其他人这三种,当这三种满足不了我们的需求的时候就可以使用ACL权限: 比如:一个网络老师,给一个班的学员上课,他在linux的根目录下 ...
- Linux C进程内存布局
当程序文件运行为进程时,进程在内存中获得空间.这个空间是进程自己的内存空间.每个进程空间按照如下方式分为不同区域: 进程内存空间布局图 text:代码段.存放的是程序的全部代码(指令),来源于二进制可 ...
- JavaScript——DOM操作——Window.document对象
一.找到元素: docunment.getElementById("id"):根据id找,最多找一个: var a =docunment.getElementById(&qu ...
- struts_22_xwork校验器列表使用说明
系统提供的校验器列表如下: required (必填校验器,要求field的值不能为null) requiredstring (必填字符串校验器,要求field的值不能为null,并且长度大于0,默认 ...
- webpack我遇到的一些坑
我的第一个用于实验webpack的项目是一个拥有多个版本的项目.什么叫多个版本?这个项目对3个语言版本+3个不同城市版本+(移动端 + PC端),也就是3*3*2,18个版本. 我的第一次想法肯定是 ...
- 查看linux的出错信息
先执行:dmesg -c > /dev/null 该命令是把之前的一些信息删除,-c选项表示:Clear the ring buffer after first printing its con ...
- 为什么DIY报价----走出软件作坊:三五个人十来条枪 如何成为开发正规军(十二)[转]
前段时间,写了一个开发.实施.服务费用计算三部曲. 水清则无鱼--走出软件作坊:三五个人十来条枪 如何成为开发正规军(八) 实施费用也能DIY--走出软件作坊:三五个人十来条枪 如何成为开发正规军(九 ...
- Openstack的error僵尸实例的解决办法
在我们对集群环境进行各种调整的情况下,很容易产生一些僵尸实例. 僵尸实例主要是没有该主机,但是在dashboard上,数据库中存在,解决办法网络上有的人给出了繁杂的修改数据库的方法,其实按照下面的命令 ...
- linux cache and buffer【转】
转自:http://blog.csdn.net/turkeyzhou/article/details/6426738 版权声明:本文为博主原创文章,未经博主允许不得转载. Linux下对文件的访问和设 ...
- sql server 关联更新
update a set a.name1 = b.name1, a.name2=b.name2from 表A a, 表B b where a.id=b.id