HDU 2579 Dating with girls(2)

http://acm.hdu.edu.cn/showproblem.php?pid=4198

 

题意:

给出r*c的图 以及时间k

图中'.'代表通路 '#'代表障碍物

当时间为k的倍数时 障碍物消失

问从起始点到终点的最短时间

 

代码:

#include<iostream>
#include<string>
#include<queue>
#define MAX 102
using namespace std;

struct node
{
	int x,y,time;
};

queue<node> q;
char map[MAX][MAX];
char vist[MAX][MAX][12]; //vist[i][j][time]代表time%k时刻在(i,j)点 
int s_x,s_y,e_x,e_y;
int r,c,k;
int dir[4][2]={{0,-1},{-1,0},{0,1},{1,0}};

int BFS()
{
	node now,next;
	
	for(int i=0;i<r;i++)
		for(int j=0;j<c;j++)
			for(int k=0;k<12;k++)
				vist[i][j][k]=0;
				
	while(!q.empty()) q.pop();
	
	now.x=s_x;
	now.y=s_y;
	now.time=0;
	q.push(now);
	vist[s_x][s_y][0]=1;

	while(!q.empty())
	{
		now=q.front();
		q.pop();

		for(int i=0;i<4;i++)
		{
			next.x=now.x+dir[i][0];
			next.y=now.y+dir[i][1];
			next.time=now.time+1;

			if(next.x<0 ||next.x>=r || next.y<0 || next.y>=c) continue;
			if(map[next.x][next.y]=='#' && next.time%k!=0) continue;
			if(vist[next.x][next.y][next.time%k]) continue;

			if(next.x==e_x && next.y==e_y) return next.time;
			else
			{
				q.push(next);
				vist[next.x][next.y][next.time%k]=1;
			}
		}
	}
	return -1;
}

int main()
{
	int t;
	while(cin>>t!=NULL)
	{
		while(t--)
		{
			cin>>r>>c>>k;
			for(int i=0;i<r;i++)
			{
				cin>>map[i];
				for(int j=0;j<c;j++)
				{
					if(map[i][j]=='Y')
					{
						s_x=i;
						s_y=j;
					}
					else if(map[i][j]=='G')
					{
						e_x=i;
						e_y=j;
					}
				}
			}
		
			int ans=BFS();
			if(ans!=-1) 
				cout<<ans<<endl;
			else 
				cout<<"Please give me another chance!"<<endl;
		}
	}
	return 0;
}

 

思路:

开三维数组vist来记录确定时刻(i,j)点的情况

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值