-
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 III] Title: 파티, Time: 116 ms, Memory: 2292 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
93 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,36 @@ | ||
# [Gold III] 파티 - 1238 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1238) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 2292 KB, 시간: 116 ms | ||
|
||
### 분류 | ||
|
||
데이크스트라, 그래프 이론, 최단 경로 | ||
|
||
### 제출 일자 | ||
|
||
2024년 5월 12일 03:27:15 | ||
|
||
### 문제 설명 | ||
|
||
<p>N개의 숫자로 구분된 각각의 마을에 한 명의 학생이 살고 있다.</p> | ||
|
||
<p>어느 날 이 N명의 학생이 X (1 ≤ X ≤ N)번 마을에 모여서 파티를 벌이기로 했다. 이 마을 사이에는 총 M개의 단방향 도로들이 있고 i번째 길을 지나는데 T<sub>i</sub>(1 ≤ T<sub>i</sub> ≤ 100)의 시간을 소비한다.</p> | ||
|
||
<p>각각의 학생들은 파티에 참석하기 위해 걸어가서 다시 그들의 마을로 돌아와야 한다. 하지만 이 학생들은 워낙 게을러서 최단 시간에 오고 가기를 원한다.</p> | ||
|
||
<p>이 도로들은 단방향이기 때문에 아마 그들이 오고 가는 길이 다를지도 모른다. N명의 학생들 중 오고 가는데 가장 많은 시간을 소비하는 학생은 누구일지 구하여라.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 N(1 ≤ N ≤ 1,000), M(1 ≤ M ≤ 10,000), X가 공백으로 구분되어 입력된다. 두 번째 줄부터 M+1번째 줄까지 i번째 도로의 시작점, 끝점, 그리고 이 도로를 지나는데 필요한 소요시간 T<sub>i</sub>가 들어온다. 시작점과 끝점이 같은 도로는 없으며, 시작점과 한 도시 A에서 다른 도시 B로 가는 도로의 개수는 최대 1개이다.</p> | ||
|
||
<p>모든 학생들은 집에서 X에 갈수 있고, X에서 집으로 돌아올 수 있는 데이터만 입력으로 주어진다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫 번째 줄에 N명의 학생들 중 오고 가는데 가장 오래 걸리는 학생의 소요시간을 출력한다.</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,57 @@ | ||
#include <iostream> | ||
#include <algorithm> | ||
#include <vector> | ||
#include <queue> | ||
using namespace std; | ||
|
||
int n, m, x; | ||
vector<vector<pair<int, int>>> map; | ||
vector<int> res; | ||
|
||
void dij(int s) { | ||
priority_queue<pair<int, int>> pq; | ||
pq.push({0, s}); | ||
vector<int> times(n+1, 10000000); | ||
while (!pq.empty()){ | ||
int h = pq.top().second, t = -pq.top().first; | ||
pq.pop(); | ||
if (times[h] < t) continue; | ||
for(int i = 0; i < map[h].size(); i++) { | ||
int nh = map[h][i].first, nt = map[h][i].second + t; | ||
if (times[nh] > nt) { | ||
times[nh] = nt; | ||
pq.push({-nt, nh}); | ||
} | ||
} | ||
} | ||
if (x != s) { | ||
res[s] += times[x]; | ||
} else { | ||
for (int i = 1; i <= n; i++) { | ||
if (x != i) res[i] += times[i]; | ||
} | ||
} | ||
return; | ||
} | ||
|
||
int main() { | ||
ios_base::sync_with_stdio(0); | ||
cin.tie(0); | ||
|
||
cin >> n >> m >> x; | ||
map.assign(n+1, vector<pair<int,int>>()); | ||
res.assign(n+1, 0); | ||
|
||
int a, b, t; | ||
for (int i = 0; i < m; i++) { | ||
cin >> a >> b >> t; | ||
map[a].push_back({b, t}); | ||
} | ||
|
||
for (int i = 1; i <= n; i++) { | ||
dij(i); | ||
} | ||
|
||
cout << *max_element(res.begin(), res.end()); | ||
return 0; | ||
} |