문제링크 : https://www.acmicpc.net/problem/4485

 

4485번: 녹색 옷 입은 애가 젤다지?

문제 젤다의 전설 게임에서 화폐의 단위는 루피(rupee)다. 그런데 간혹 '도둑루피'라 불리는 검정색 루피도 존재하는데, 이걸 획득하면 오히려 소지한 루피가 감소하게 된다! 젤다의 전설 시리즈의 주인공, 링크는 지금 도둑루피만 가득한 N x N 크기의 동굴의 제일 왼쪽 위에 있다. [0][0]번 칸이기도 하다. 왜 이런 곳에 들어왔냐고 묻는다면 밖에서 사람들이 자꾸 "젤다의 전설에 나오는 녹색 애가 젤다지?"라고 물어봤기 때문이다. 링크가 녹색 옷을 입

www.acmicpc.net

 문제설명 

 

1. NxN 행렬의 크기 N이주어지고 각 행렬에 정수가 채워진다.

2. (1,1)에서 (N,N) 까지가는데 드는 비용을 출력 하면됨 .

 

 알고리즘 

 

1. 다익스트라 알고리즘을 이용하여 각 정점까지의 최소비용을 계속 갱신.

2. 마지막에 map(N,N)  을 출력한다.

 

시작값(1,1) 을 더해주는거잊지말자 .

 

 코드 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
 
typedef pair<intint> P;
typedef pair<int, P> PP;
 
int INF = 150000;
int N;
int map[130][130];
int check[130][130];
int dy[] = { 0,0,1,-1 };
int dx[] = { 1,-1,0,0 };
 
//다익스트라
void dijkstra(int y, int x) {
    check[y][x] = 0;
    priority_queue<PP> pq;
    pq.push(PP(0, P(y, x)));
 
    while (!pq.empty()) {
        int curr_x = pq.top().second.second;
        int curr_y = pq.top().second.first;
        int dist = -pq.top().first;
        //종료부
        if (curr_x == N - 1 && curr_y == N - 1)break;
        pq.pop();
 
        //현재 거리가 최소거리가 아니면 continue
        if (check[curr_y][curr_x] < dist) continue;
 
 
 
        for (int i = 0; i < 4; i++) {
            int next_x = curr_x + dx[i];
            int next_y = curr_y + dy[i];
            //배열 범위 내부에있는지
            if (next_x >= 0 && next_x < N && next_y >= 0 && next_y < N) {
                //다음 정점 까지의 거리
                int next_dist = dist+map[next_y][next_x];
                //거리가 최소값이면 갱신
                if (next_dist < check[next_y][next_x]) {
                    check[next_y][next_x] = next_dist;
                    pq.push(PP(-next_dist, P(next_y, next_x)));
                }
            }            
        }
    }
    return;
}
 
int main() {
    cin.tie(NULL);
    ios::sync_with_stdio(false);
 
    int cnt = 1;
    while (1) {
        cin >> N;
        if (N == 0)break;
 
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                cin >> map[i][j];
                check[i][j] = INF;
            }
        }
 
        dijkstra(00);
        cout << "Problem " << cnt << ": " << map[0][0]+check[N - 1][N - 1<< "\n";
 
        cnt++;
    }
 
}
cs

'c++ > 백준' 카테고리의 다른 글

백준 1753번: 최단 경로  (0) 2020.04.30
백준 1261번: 알고 스팟  (0) 2020.04.30
백준 2004번 : 조합 0의 갯수  (0) 2020.04.30
백준 2458번 : 키 순서  (0) 2020.04.30
백준 1507번: 궁금한 민호  (0) 2020.04.30
ariz1623