반응형

https://www.acmicpc.net/problem/1005

 

1005번: ACM Craft

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

www.acmicpc.net

 

각 건물을 지을 때까지 걸리는 소요 시간 = 선행 건물을 지을 때까지 걸리는 소요 시간 + 해당 건물을 짓는데 걸리는 소요 시간입니다.

위상정렬을 통해 순서대로 방문하면서 소요 시간을 업데이트해주었습니다.

 

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;

int t, n, k, w, a, b, d[1001], indegree[1001], time[1001];

vector<int> graph[1001];

int main() {
	scanf("%d", &t);
	while (t--) {
		scanf("%d %d", &n, &k);
		for (int i = 1; i <= n; i++) {
			scanf("%d", &d[i]);
			time[i] = indegree[i] = 0;
			graph[i].clear();
		}
		while (k--) {
			scanf("%d %d", &a, &b);
			graph[a].push_back(b);
			indegree[b]++;
		}
		scanf("%d", &w);

		queue<int> q;
		for (int i = 1; i <= n; i++) {
			if (indegree[i] == 0) {
				q.push(i);
				time[i] = d[i];
			}
		}

		while (!q.empty()) {
			int node = q.front();
			q.pop();
			if (node == w) break;
			for (int i = 0; i < graph[node].size(); i++) {
				int next = graph[node][i];
				time[next] = max(time[next], time[node] + d[next]);
				if (--indegree[next] == 0) {
					q.push(next);
				}
			}
		}
		printf("%d\n", time[w]);
	}
}
반응형

'Algorithm' 카테고리의 다른 글

백준 16120 : PPAP  (0) 2021.11.17
백준 7490 : 0 만들기  (0) 2021.11.17
백준 3665 : 최종 순위  (0) 2021.11.17
백준 13397 : 구간 나누기 2  (0) 2021.11.17
백준 1662 : 압축  (0) 2021.11.17

+ Recent posts