Game Develop

[Algorithm]Baekjoon 4485번 :: 녹색 옷 입은 애가 젤다지? 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 4485번 :: 녹색 옷 입은 애가 젤다지?

MaxLevel 2023. 10. 12. 10:37

https://www.acmicpc.net/problem/4485

 

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

젤다의 전설 게임에서 화폐의 단위는 루피(rupee)다. 그런데 간혹 '도둑루피'라 불리는 검정색 루피도 존재하는데, 이걸 획득하면 오히려 소지한 루피가 감소하게 된다! 젤다의 전설 시리즈의 주

www.acmicpc.net

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
struct Node
{
    int y;
    int x;
};
 
int n;
int arr[125][125];
int dist[125][125];
int dirs[4][2= { {-1,0}, {1,0}, {0,-1}, {0,1} };
vector<int> answers;
 
void BFS()
{
    memset(dist, 0x3fsizeof(dist));
    dist[0][0= arr[0][0];
 
    queue<Node> q;
    q.push({ 0,0 });
 
    while (!q.empty())
    {
        int curY = q.front().y;
        int curX = q.front().x;
        q.pop();
 
        for (int i = 0; i < 4++i)
        {
            int nextY = curY + dirs[i][0];
            int nextX = curX + dirs[i][1];
 
            if (nextY < 0 || nextY == n) continue;
            if (nextX < 0 || nextX == n) continue;
 
            if (dist[curY][curX] + arr[nextY][nextX] < dist[nextY][nextX])
            {
                dist[nextY][nextX] = dist[curY][curX] + arr[nextY][nextX];
                q.push({ nextY,nextX });
            }
        }
    }
 
    answers.push_back({ dist[n - 1][n - 1] });
}
 
int main(void)
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    while (1)
    {
        cin >> n;
        if (n == 0break;
 
        for (int i = 0; i < n; ++i)
        {
            for (int j = 0; j < n; ++j)
            {
                cin >> arr[i][j];
            }
        }
 
        BFS();
    }
 
    for (int i = 0; i < answers.size(); ++i)
    {
        printf("Problem %d: %d\n", i+1, answers[i]);
    }
}
cs

바로 이전문제를 풀고 왔어서 그런가, 금방 풀긴 했다.

좀 더 상위호환문제를 풀어봐야겠다.