알고스팟 문제와 동일해서 쉽게 풀었다.
달라진 점이라면 시작점이 0이 아니라는것과 test case 가 여러개라는것
struct node {
int x, y, w;
node (int x, int y, int w): x(x), y(y), w(w) {}
bool operator < (node other) const {
return w > other.w;
}
};
이 부분만 잘 기억해야겠다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <queue> | |
#include <string.h> | |
/** | |
* https://www.acmicpc.net/problem/4485 | |
* BOJ 백준온라인져지 4485 녹색 옷 입은 애가 젤다지? 풀이 | |
*/ | |
using namespace std; | |
int xxxx[] = {0, 1, 0, -1}; | |
int yyyy[] = {-1, 0, 1, 0}; | |
struct node { | |
int x, y, w; | |
node (int x, int y, int w): x(x), y(y), w(w) {} | |
bool operator < (node other) const { | |
return w > other.w; | |
} | |
}; | |
int main () { | |
for (int z = 1;; z++) { | |
int size; | |
scanf("%d", &size); | |
if (size == 0) break; | |
int row = size, col = size; | |
bool visited[row][col]; | |
int map[row][col]; | |
for (int i = 0; i < row; i++) { | |
for (int j = 0; j < col; j++) { | |
scanf("%d", &map[i][j]); | |
} | |
} | |
memset(visited, 0, sizeof(visited)); | |
priority_queue<node> pq; | |
pq.push(node(0, 0, map[0][0])); | |
while(pq.size()) { | |
node n = pq.top(); pq.pop(); | |
int cx = n.x; int cy = n.y; int cw = n.w; | |
if (cx == row - 1 && cy == col - 1) { | |
printf("Problem %d: %d\n", z, cw); | |
break; | |
} | |
visited[cx][cy] = true; | |
for (int i = 0; i < 4; i++) { | |
int nx = cx + xxxx[i]; int ny = cy + yyyy[i]; | |
if (visited[nx][ny] || nx < 0 || ny < 0 || nx >= row || ny >= col) continue; | |
int nw = cw + map[nx][ny]; | |
pq.push(node(nx, ny, nw)); | |
} | |
} | |
} | |
} |
'IT > 알고리즘' 카테고리의 다른 글
BOJ 백준온라인져지 11375 열혈강호 풀이 (0) | 2018.01.23 |
---|---|
BOJ 백준온라인져지 14502 연구소 풀이 (0) | 2018.01.14 |
BOJ 백준온라인져지 1261 알고스팟 풀이 Raw (0) | 2018.01.11 |
BOJ 백준온라인져지 1504 특정한 최단 경로 풀이 (0) | 2018.01.09 |
BOJ 백준온라인져지 1918 후위표기식 풀이 (0) | 2018.01.07 |