-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmsched.cpp
More file actions
61 lines (56 loc) · 1.27 KB
/
msched.cpp
File metadata and controls
61 lines (56 loc) · 1.27 KB
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
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
using namespace std;
#define INF 1000000000
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int n, m;
int cows[10001];
vi children[10001];
int result[100001];
int calcTime(int cow) {
if (result[cow] != -1) return result[cow];
result[cow] = cows[cow];
for (int child : children[cow]) {
result[cow] = max(result[cow], cows[cow] + calcTime(child));
}
return result[cow];
}
int main() {
freopen("msched.in", "r", stdin);
freopen("msched.out", "w", stdout);
cin >> n >> m;
for (int i = 1; i <= n; i++) cin >> cows[i];
for (int i = 0; i < m; i++) {
int a, b; cin >> a >> b;
children[a].push_back(b);
}
int ans = 0;
memset(result, -1, sizeof result);
for (int i = 1; i <= n; i++) {
ans = max(ans, calcTime(i));
}
cout << ans << endl;
return 0;
}