- 선행이 필요하기 때문에 topological sort
- 최소 시간을 물어봤지만, 최댓값을 구해야 한다.
- maxSum[from] 들중 최댓값을 maxSum[to]에 저장하고, maxSum이 pop되면 그때 해당 작업의 weight를 추가해준다.
- indegree[to]가 0일 때만 queue에 push하면 되는데, to를 만날 때마다 queue에 push하고 꺼낼 때 해당 indegree가 0인지 여부를 확인하는 과정을 넣는 바람에 메모리 초과가 발생했다.
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
|
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <functional>
#include <vector>
#include <queue>
using namespace std;
#define MAX_N 10010
int N;
vector<int> edge[MAX_N];
int indegree[MAX_N];
int weight[MAX_N];
int maxSum[MAX_N];
void solution() {
queue<int> q;
for (int from = 1; from <= N; from++)
if (indegree[from] == 0)
q.push(from);
while (!q.empty()) {
int from = q.front();
q.pop();
maxSum[from] += weight[from];
for (int i = 0; i < edge[from].size(); i++) {
int to = edge[from][i];
maxSum[to] = max(maxSum[to], maxSum[from]);
indegree[to]--;
if (indegree[to] == 0)
q.push(to);
}
}
}
int main() {
fill_n(maxSum, MAX_N, 0);
scanf("%d", &N);
for (int to = 1; to <= N; to++) {
scanf("%d", &weight[to]);
int M;
scanf("%d", &M);
for (int j = 0; j < M; j++) {
int from;
scanf("%d", &from);
edge[from].push_back(to);
indegree[to]++;
}
}
solution();
int res = 0;
for (int i = 1; i <= N; i++)
res = max(res, maxSum[i]);
printf("%d\n", res);
}
|