-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Gold V] Title: 최소비용 구하기, Time: 28 ms, Memory: 5952 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# [Gold V] 최소비용 구하기 - 1916 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1916) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 5952 KB, 시간: 28 ms | ||
|
||
### 분류 | ||
|
||
데이크스트라, 그래프 이론 | ||
|
||
### 문제 설명 | ||
|
||
<p>N개의 도시가 있다. 그리고 한 도시에서 출발하여 다른 도시에 도착하는 M개의 버스가 있다. 우리는 A번째 도시에서 B번째 도시까지 가는데 드는 버스 비용을 최소화 시키려고 한다. A번째 도시에서 B번째 도시까지 가는데 드는 최소비용을 출력하여라. 도시의 번호는 1부터 N까지이다.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 도시의 개수 N(1 ≤ N ≤ 1,000)이 주어지고 둘째 줄에는 버스의 개수 M(1 ≤ M ≤ 100,000)이 주어진다. 그리고 셋째 줄부터 M+2줄까지 다음과 같은 버스의 정보가 주어진다. 먼저 처음에는 그 버스의 출발 도시의 번호가 주어진다. 그리고 그 다음에는 도착지의 도시 번호가 주어지고 또 그 버스 비용이 주어진다. 버스 비용은 0보다 크거나 같고, 100,000보다 작은 정수이다.</p> | ||
|
||
<p>그리고 M+3째 줄에는 우리가 구하고자 하는 구간 출발점의 도시번호와 도착점의 도시번호가 주어진다. 출발점에서 도착점을 갈 수 있는 경우만 입력으로 주어진다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 출발 도시에서 도착 도시까지 가는데 드는 최소 비용을 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#include <iostream> | ||
#include <algorithm> | ||
#include <queue> | ||
using namespace std; | ||
|
||
int main(){ | ||
|
||
ios_base::sync_with_stdio(0); | ||
cin.tie(0); | ||
//freopen("input.txt", "r", stdin); | ||
|
||
int map[1001][1001]; | ||
int cost[1001]; | ||
priority_queue<pair<int,int>,vector<pair<int,int> >,greater<pair<int,int> > >pq; | ||
int n, m, s, e, w; | ||
|
||
cin >> n >> m; | ||
fill(map[0], map[n], 100000001); | ||
fill(cost, cost + n, 100000001); | ||
for (int i = 0; i < m; i++) { | ||
cin >> s >> e >> w; | ||
map[s-1][e-1] = min(map[s-1][e-1], w); | ||
} | ||
cin >> s >> e; | ||
cost[s-1] = 0; | ||
pq.push({cost[s-1], s-1}); | ||
while (!pq.empty()) { | ||
int city = pq.top().second, sum = pq.top().first; | ||
pq.pop(); | ||
for (int i = 0; i < n; i++) { | ||
if (map[city][i] != 100000001) { | ||
if (sum + map[city][i] < cost[i]) { | ||
pq.push({sum + map[city][i], i}); | ||
cost[i] = sum + map[city][i]; | ||
} | ||
} | ||
} | ||
} | ||
cout << cost[e-1]; | ||
return 0; | ||
} |