程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj_3669_Meteor Shower(BFS+預處理)

poj_3669_Meteor Shower(BFS+預處理)

編輯:C++入門知識

poj_3669_Meteor Shower(BFS+預處理)



 
/*思路:BFS+預處理
先預處理會爆炸的區域,BFS,遇到-1則結束*/
#include 
#include 
#include 
using namespace std;
int visit[1001][1001];
int dx[5] = {0,0,1,0,-1};
int dy[5] = {0,1,0,-1,0};
typedef struct
{
	int x,y;
	int step; 
}point;
queue que;
int bfs(int x,int y)
{
	int cnt;
	if(visit[0][0] == 0)  return -1;//無法逃離 
	if(visit[0][0] == -1) return 0;  //安全,無需逃離 
	point s,cur,next;
	s.x = x;
	s.y = y;
	s.step = 0;
	que.push(s);
	while(!que.empty())
	{
		cur = que.front();
		que.pop();
		for(int i = 0;i < 5;i++)
		{
			next.x = cur.x + dx[i];
			next.y = cur.y + dy[i];
			next.step = cur.step + 1;
			
			if(next.x >= 0 && next.y >= 0 && next.y < 1001 && next.x < 1001)
			{
				if(visit[next.x][next.y] == -1)
				{
					return next.step;
				}
				if(next.step < visit[next.x][next.y])
				{
					visit[next.x][next.y] = next.step;//記錄最小的步數 
					que.push(next);	
				}
			} 
		} 
	} 
	return -1;
}
int main()
{

	int m;
    while(cin >> m)
	{
        int x,y,t,xx,yy;
	    memset(visit,-1,sizeof(visit));
	    for(int i = 0;i < m;i++)
	    {
	        cin >> x >> y >> t;
	        
	  
	        for(int i = 0;i <= 4;i++)
	        {
	            xx = x + dx[i];
	            yy = y + dy[i];
	            if(xx >= 0 && yy >= 0 && xx < 1001 && yy < 1001)//保證在有限區域內 
				{
		            if(visit[xx][yy] == -1)
		            	 visit[xx][yy] = t;
		            else
		            	visit[xx][yy] = min(visit[xx][yy],t);
				}
	        }
	    }
	    cout << bfs(0,0) << 
; 
	}
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved