Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- command not found
- 오손데이터읽기
- 민겸수
- hackerank
- 1759번
- 비재귀셰그먼트
- 백준 1253번
- 의미와 무의미의 경계에서
- SQL
- 1967번
- 5639
- Unreal
- 백준
- 셰그먼트트리
- UActor
- 트랜잭션 관리
- oracle
- 데이터베이스 배움터
- 실습
- objtofbx
- UnrealMP
- Security
- C++
- 1253번
- 언리얼 플러그인
- Linux
- OS
- 2단계로킹
- 언리얼 커스텀 플러그인
- FBX
Archives
- Today
- Total
fatalite
최소비용 구하기 - 1916 백준 본문
백준에서 가장 간단한 다익스트라 문제이다.
근데 겁나 헤맸다.
애초에 다른 로직은 맞는데 다익스트라의
이중 포문에서 내부 반복문이 없는 상태로
단 한 번만 갱신했더니 2%에서 계속 틀려서 멘탈이 나갔다.
다시 한 번 개념을 숙지해야겠다.
다익스트라라고 생각한 이유는,
음의 간선이 없고 정점(노드)의 개수가 크기 때문에 이를 선택했다.
난이도는 골드5
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int INF = 210000000;
int n, m;
int price[1001][1001];
int dp[1001];
int x, y;
bool isVisited[1001] = { false };
void dijkstra(int start) {
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq;
for (int i = 0; i < n; i++) {
pq.push(make_pair(price[start][i], i));
dp[i] = price[start][i];
}
for (int i = 0; i < n; i++) {
int a = pq.top().second;
pq.pop();
if (isVisited[a] == true) continue;
isVisited[a] = true;
for (int j = 0; j < n; j++) {
if (dp[j] > dp[a] + price[a][j]) {
//x to y 의 길이가 x to a + a to y 까지의 길이보다 클 때..
dp[j] = dp[a] + price[a][j];
pq.push(make_pair(dp[j], j));
}
}
}
}
int main()
{
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j) {
price[i][j] = 0;
}
else {
price[i][j] = INF;
}
}
}
//M개의 BUS 출발점, 도착점, 가격
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
if (price[a - 1][b - 1] > c) {
price[a - 1][b - 1] = c;
}
}
cin >> x >> y;
// INDEX
x = x - 1;
y = y - 1;
//최단거리 찾기 => 음의 간선 없음, 점의 개수 많음, 다익스트라?
dijkstra(x);
cout << dp[y];
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
N과 M(6) - 백준 15655 (0) | 2023.02.26 |
---|---|
N과 M(4) - 백준 15652 (0) | 2023.02.26 |
거짓말 - 백준 1043 (0) | 2023.02.06 |
RGB 거리 - 백준 1149 (0) | 2023.02.05 |
Sales by Match (0) | 2023.02.04 |