일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- dfs
- 다익스트라
- 2023
- dropout
- 너비 우선 탐색
- 세그먼트 트리
- 회고록
- NEXT
- lazy propagation
- c++
- 이분 탐색
- DP
- back propagation
- 가끔은 말로
- 백트래킹
- 미래는_현재와_과거로
- 자바스크립트
- 분할 정복
- 우선 순위 큐
- 크루스칼
- BFS
- 가끔은_말로
- 문자열
- 조합론
- Overfitting
- tensorflow
- pytorch
- object detection
- 플로이드 와샬
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 1261번: 알고스팟 (C++) 본문
https://www.acmicpc.net/problem/1261
2차원 배열을 이용한 다익스트라 문제였다.
입력은 문자열을 처리해줘야 했으며 다음 노드로 가는 비용을 계산할 때 입력받은 2차원 배열을 이용하는 것을 까먹지 않으면 쉽게 풀리는 문제다.
[AC 코드]
#include <iostream>
#include <queue>
#include <utility>
#include <vector>
#define MAX (100 + 1)
#define pii pair<int, int>
#define INF 987654321
using namespace std;
vector<pair<pii, int>> graph[MAX];
int map[MAX][MAX];
int n, m;
struct cmp {
bool operator()(pair<pii, int>& a, pair<pii, int>& b) {
return a.second > b.second;
}
};
typedef struct {
int y, x;
} Direction;
Direction dir[4] = { {-1, 0}, {1, 0}, {0, 1}, {0, -1} };
vector<vector<int>> dijkstra(int row, int col) {
priority_queue<pair<pii, int>, vector<pair<pii, int>>, cmp> pq;
vector<vector<int>> dist(n + 1, vector<int>(m + 1, INF));
pq.push({ {row, col}, 0 });
dist[row][col] = 0;
while (!pq.empty()) {
int y = pq.top().first.first;
int x = pq.top().first.second;
int cost = pq.top().second;
pq.pop();
if (dist[y][x] < cost) continue;
for (int i = 0; i < 4; i++) {
int dy = y + dir[i].y;
int dx = x + dir[i].x;
if (dy > n || dy < 1 || dx > m || dx < 1) continue;
int nextCost = map[dy][dx];
if (cost + nextCost < dist[dy][dx]) {
dist[dy][dx] = cost + nextCost;
pq.push({ {dy, dx}, dist[dy][dx] });
}
}
}
return dist;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> m >> n;
for (int i = 1; i <= n; i++) {
string value;
cin >> value;
for (int j = 0; j < value.size(); j++) {
map[i][j + 1] = value[j] - '0';
}
}
vector<vector<int>> temp = dijkstra(1, 1);
cout << temp[n][m];
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 21278번: 호석이 두 마리 치킨 (C++) (0) | 2021.12.15 |
---|---|
[알고리즘] 백준 9694번: 무엇을 아느냐가 아니라 누구를 아느냐가 문제다 (C++) (0) | 2021.12.15 |
[알고리즘] 백준 1321번: 군인 (C++) (0) | 2021.12.14 |
[알고리즘] 백준 1946번: 신입 사원 (C++), 그리디 알고리즘 (0) | 2021.12.14 |
[알고리즘] 백준 5590번: 船旅 (C++) (0) | 2021.12.13 |