码迷,mamicode.com
首页 > 其他好文 > 详细

poj1573

时间:2014-05-22 08:56:41      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:blog   class   c   code   a   int   

//纯模拟 
#include<iostream>
#include<cstring>
using namespace std;
struct node
{
	char direction;
	int step;
};
node map[11][11];
int main()
{
	int row,column,enter,step,i,j,v[11][11],x,y;
	while(scanf("%d%d%d",&row,&column,&enter)&&(row!=0||column!=0||enter!=0))
	{
		memset(v,0,sizeof(v));
		getchar();
		for(i=1;i<=row;i++)
		{
			for(j=1;j<=column;j++)
			scanf("%c",&map[i][j].direction);
			getchar();
		}
		x=1;
		y=enter;
		step=0;
		while(0<x&&x<=row&&0<y&&y<=column&&v[x][y]==0)
		{
			v[x][y]=1;
			step++;
			map[x][y].step=step;
			if(map[x][y].direction==‘E‘)
			y++;
			else if(map[x][y].direction==‘S‘)
			x++;
			else if(map[x][y].direction==‘W‘)
			y--;
			else
			x--;
		}
		if(x<=0||y<=0||x>row||y>column)
		printf("%d step(s) to exit\n",step);
		else
		printf("%d step(s) before a loop of %d step(s)\n",map[x][y].step-1,step-map[x][y].step+1);
	}
}

poj1573,布布扣,bubuko.com

poj1573

标签:blog   class   c   code   a   int   

原文地址:http://blog.csdn.net/stl112514/article/details/26279741

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!