forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3.cpp
62 lines (54 loc) Β· 2.12 KB
/
3.cpp
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
#include <bits/stdc++.h>
#define INF 1e9 // 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
using namespace std;
int testCase, n;
int graph[125][125], d[125][125];
int dx[] = {-1, 0, 1, 0};
int dy[] = {0, 1, 0, -1};
int main(void) {
cin >> testCase;
// μ 체 ν
μ€νΈ μΌμ΄μ€(Test Case)λ§νΌ λ°λ³΅
for (int tc = 0; tc < testCase; tc++) {
// λ
Έλμ κ°μλ₯Ό μ
λ ₯λ°κΈ°
cin >> n;
// μ 체 맡 μ 보λ₯Ό μ
λ ₯λ°κΈ°
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> graph[i][j];
}
}
// μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
for (int i = 0; i < n; i++) {
fill(d[i], d[i] + 125, INF);
}
int x = 0, y = 0; // μμ μμΉλ (0, 0)
// μμ λ
Έλλ‘ κ°κΈ° μν μ΅λ¨ κ²½λ‘λ 0μΌλ‘ μ€μ νμ¬, νμ μ½μ
priority_queue<pair<int, pair<int, int> > > pq;
pq.push({-graph[x][y], {0, 0}});
d[x][y] = graph[x][y];
// λ€μ΅μ€νΈλΌ μκ³ λ¦¬μ¦μ μν
while (!pq.empty()) {
// κ°μ₯ μ΅λ¨ κ±°λ¦¬κ° μ§§μ λ
Έλμ λν μ 보 κΊΌλ΄κΈ°
int dist = -pq.top().first;
int x = pq.top().second.first;
int y = pq.top().second.second;
pq.pop();
// νμ¬ λ
Έλκ° μ΄λ―Έ μ²λ¦¬λ μ μ΄ μλ λ
ΈλλΌλ©΄ 무μ
if (d[x][y] < dist) continue;
// νμ¬ λ
Έλμ μ°κ²°λ λ€λ₯Έ μΈμ ν λ
Έλλ€μ νμΈ
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
// 맡μ λ²μλ₯Ό λ²μ΄λλ κ²½μ° λ¬΄μ
if (nx < 0 || nx >= n || ny < 0 || ny >= n) continue;
int cost = dist + graph[nx][ny];
// νμ¬ λ
Έλλ₯Ό κ±°μ³μ, λ€λ₯Έ λ
Έλλ‘ μ΄λνλ κ±°λ¦¬κ° λ 짧μ κ²½μ°
if (cost < d[nx][ny]) {
d[nx][ny] = cost;
pq.push({-cost, {nx, ny}});
}
}
}
cout << d[n - 1][n - 1] << '\n';
}
}