반응형

문제 링크: https://www.acmicpc.net/problem/1005

 

1005번: ACM Craft

첫째 줄에는 테스트케이스의 개수 T가 주어진다. 각 테스트 케이스는 다음과 같이 주어진다. 첫째 줄에 건물의 개수 N과 건물간의 건설순서 규칙의 총 개수 K이 주어진다. (건물의 번호는 1번부

www.acmicpc.net

<문제 풀이> 위상 정렬

 

기본적인 위상 정렬 알고리즘으로 최단거리를 구하면 되는데 주의할 점은

정점 v의 최단거리를 갱신할 때 u -> v에서 u의 건설 시간이 최대가 되는 정점을 택해야 한다.

(u의 모든 정점이 건설이 완료되어야 v를 건설할 수 있으므로 가장 늦게 건설이 완료되는 u를 택함)

dist[v] = max(dist[v], dist[u] + d[v]);

 

<C++ 소스 코드>

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
63
64
65
66
67
68
69
70
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
#include <deque>
 
using namespace std;
 
int n, k;
int d[1001];
vector<int> adj[1001];
int indegree[1001];
int dist[1001];
 
void bfs() {
    queue<int> Q;
    for (int i = 1; i <= n; i++) {
        if (indegree[i] == 0) {
            Q.push(i);
            dist[i] = d[i];
        }
    }
    while (!Q.empty()) {
        int u = Q.front(); Q.pop();
        for (auto& v : adj[u]) {
            dist[v] = max(dist[v], dist[u] + d[v]);
            indegree[v]--;
            if (indegree[v] == 0) {
                Q.push(v);
            }
        }
    }
}
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
 
    int test_case; cin >> test_case;
    while (test_case--) {
        cin >> n >> k;
        for (int i = 1; i <= n; i++) {
            cin >> d[i];
        }
        for (int i = 0; i < k; i++) {
            int x, y;
            cin >> x >> y;
            adj[x].push_back(y);
            indegree[y]++;
        }
        int w; cin >> w;
        bfs();
        cout << dist[w] << '\n';
        fill(dist, dist + 10010);
        fill(indegree, indegree + 10010);
        fill(d, d + 10010);
        for (int i = 0; i < 1001; i++) {
            adj[i].clear();
        }
 
 
    }
 
    return 0;
}
 
cs
반응형

'알고리즘 문제풀이 > 백준' 카테고리의 다른 글

[백준 1780번] 종이의 개수  (0) 2021.12.27
[백준 1766번] 문제집  (0) 2021.12.20
[백준 1516번] 게임 개발  (0) 2021.12.20
[백준 1516번] 게임 개발  (0) 2021.12.20
[백준 14675번] 단절점과 단절선  (0) 2021.12.19

+ Recent posts