HDU 1242 Rescue (광 검색 + 우선 대기 열)

HDU 1242
우선 대기 열 사용 을 배 웠 습 니 다. 가장 적 게 사용 하 는 방안 을 대기 열 맨 앞 에 두 는 것 입 니 다.
< 에 대한 무 거 운 짐 에 대해 잘 모 르 겠 습 니 다. a > b 만 있 으 면 작은 것 을 팀 앞 에 두 는 것 같 습 니 다. 즉, 가장 작은 더미 입 니 다. 마치 sort 와 반대 되 는 것 같 습 니 다.
참고 블 로그:http://blog.csdn.net/cambridgeacm/article/details/7725146
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
using namespace std;
int N, M;
const int inf = 0x3f3f3f3f;
int map[210][210], vis[210][210];
int sx, sy;
int ans;
struct node {
	int x, y, time;
	friend bool operator < (node a, node b) {
		return a.time > b.time;
	}
};
int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0};
void bfs() {
	priority_queue<node> q;
	node now, next;
	now.time = 0, now.x = sx, now.y = sy;
	q.push(now);
	vis[sx][sy] = 1;
	while(!q.empty()) {
		now = q.top();
		q.pop();
		if(map[now.x][now.y] == 'r') {
			ans = now.time;
			return;
		}
		int i;
		for(i = 0; i < 4; i++) {
			next.x = now.x + dir[i][0];
			next.y = now.y + dir[i][1];
			next.time = now.time;
			if(next.x >= 0 && next.x < N && next.y >= 0 && next.y < M && map[next.x][next.y] != '#' && vis[next.x][next.y] == 0) {
				vis[next.x][next.y] = 1;
				if(map[next.x][next.y] == 'x') next.time += 2;
				else next.time += 1;
				q.push(next);
			}
		}
	}
}
int main() {
	while(~scanf("%d %d", &N, &M)) {
		getchar();
		int i, j;
		for(i = 0; i < N; i++) {
			for(j = 0; j < M; j++) {
				scanf("%c", &map[i][j]);
				if(map[i][j] == 'a') {
					sx = i, sy = j;
				}
			}
			getchar();
		}
		memset(vis, 0, sizeof(vis));
		ans = inf;
		bfs();
		if(ans == inf) printf("Poor ANGEL has to stay in the prison all his life.
"); else printf("%d
", ans); } return 0; }

좋은 웹페이지 즐겨찾기