HDU 1242 Rescue (광 검색 + 우선 대기 열)
우선 대기 열 사용 을 배 웠 습 니 다. 가장 적 게 사용 하 는 방안 을 대기 열 맨 앞 에 두 는 것 입 니 다.
< 에 대한 무 거 운 짐 에 대해 잘 모 르 겠 습 니 다. 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;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.