반응형
https://www.acmicpc.net/problem/2056
2056번: 작업
수행해야 할 작업 N개 (3 ≤ N ≤ 10000)가 있다. 각각의 작업마다 걸리는 시간(1 ≤ 시간 ≤ 100)이 정수로 주어진다. 몇몇 작업들 사이에는 선행 관계라는 게 있어서, 어떤 작업을 수행하기 위해
www.acmicpc.net
#include <bits/stdc++.h>
using namespace std;
int n;
int cost[10003];
vector<int> adj[10003];
int degree[10003];
int res[10003];
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> cost[i];
int k;
cin >> k;
for (int j = 0; j < k; j++) {
int pre;
cin >> pre;
adj[pre].push_back(i);
degree[i]++;
}
}
int ans = 0;
queue<int> Q;
for (int i = 1; i <= n; i++) {
if (degree[i] == 0) {
res[i] = cost[i];
Q.push(i);
ans = max(res[i], ans);
}
}
while (!Q.empty()) {
int x = Q.front();
Q.pop();
for (auto nx : adj[x]) {
res[nx] = max(res[nx], res[x] + cost[nx]);
ans = max(ans, res[nx]);
if (--degree[nx] == 0) {
Q.push(nx);
}
}
}
cout << ans << '\n';
return 0;
}
반응형
'Algorithm > problem' 카테고리의 다른 글
백준 1948번: 임계경로 - 위상정렬 C++ (0) | 2022.02.26 |
---|---|
백준 2848번 : 알고스팟어 - 위상정렬 C++ 코드 (0) | 2022.02.25 |
백준 21276번 : 계보 복원가 호석 - 위상정렬 C++ 코드 (0) | 2022.02.25 |
백준 2529번: 부등호 - 백트래킹, 위상정렬 풀이 C++ (0) | 2022.02.25 |
백준 14442번 : 벽 부수고 이동하기 2 - BFS C++ (0) | 2022.02.24 |