백준 4485 녹색 옷 입은 애가 젤다지?

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

유형 : 다익스트라


문제 해석

  • 시작점 {0 , 0} 에서 끝점 {n-1 , n-1} 까지 가는 최소 비용을 구하라.

문제 재해석

  • 단순한 다익스트라 문제이다.

해결전략

  • 다익스트라를 통해서 시작점과 끝점의 거리를 구한다.

구현, 설계

  • priority queue는 기본적으로 max heap이니 비교 함수 cmp를 반대로 해준다.

코드

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
76
77
78
79
80
81
82
#include <bits/stdc++.h>
using namespace std;

struct spot {
    int lost_money;
    int x, y;
};

struct cmp {
    bool operator()(const spot &s1, const spot &s2){
        return s1.lost_money > s2.lost_money;
    }
};

const int dx[] = { -1,1,0,0 };
const int dy[] = { 0,0,-1,1 };

int board[127][127];
bool visit[127][127];
int n;

void Init() {
    memset(visit, false, sizeof(visit));

    for (int i = 0; i < n; ++i) {
        for (int ii = 0; ii < n; ++ii) {
            cin >> board[i][ii];
        }
    }
}

int Dijkstra() {
    priority_queue<spot, vector<spot>, cmp> pq;

    visit[0][0] = true;
    pq.push({ board[0][0],0,0 });

    while (!pq.empty()) {
        auto cur = pq.top();    pq.pop();
        if (cur.x == n - 1 and cur.y == n - 1) return cur.lost_money;
        
        for (int dir = 0; dir < 4; ++dir) {
            int nx = cur.x + dx[dir];
            int ny = cur.y + dy[dir];

            if (nx < 0 or nx >= n or ny < 0 or ny >= n) continue;
            if (visit[nx][ny]) continue;
            visit[nx][ny] = true;
            
            int cost = board[nx][ny];
            pq.push({ cur.lost_money + cost, nx,ny });
        }
    }
    return -1;
}

int Solve() {
    return Dijkstra();
}

void Input() {
    int cnt = 1;
    while (1) {
        cin >> n;
        if (n == 0) break;

        Init();
        cout << "Problem " << cnt << ": " << Solve() << "\n";
        cnt++;
    }
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);  cout.tie(NULL);
    freopen("input.txt", "r", stdin);

    Input();

    return 0;
}

피드백

  • operator 오타를 주의하자
  • 우선순위 큐 쓰는 BFSINF 세팅이 필요 없다.
  • 시작점에도 가중치가 있는것을 뺴먹지 말자.