#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define MP make_pair
const int N = 100500;
struct fenwick{
vector<int> f;
fenwick(int n){
f.resize(n + 2);
};
void add(int i, int x){
i++;
while (i < (int)f.size()){
f[i] = max(f[i], x);
i += (-i) & i;
}
}
int get(int i){
int res = 0;
while (i > 0){
res = max(res, f[i]);
i -= (-i) & i;
}
return res;
}
};
vector<int> g[N];
vector<vector<ll>> dp;
pair<int, int> fruit[N];
void dfs(int v){
dp[v][fruit[v].first] = fruit[v].second;
for (int u : g[v]){
dfs(u);
}
for (int t = 1; t < dp[v].size(); t++){
for (int u : g[v]){
dp[v][t] += dp[u][t];
}
}
for (int t = 1; t < dp[v].size(); t++) dp[v][t] = max(dp[v][t], dp[v][t - 1]);
}
int LIS(const vector<int> &a){
int n = (int) a.size();
fenwick f(n);
int res = 0;
for (int i = 0; i < n; i++){
int _dp = f.get(a[i]) + 1;
f.add(a[i], _dp);
res = max(res, _dp);
}
return res;
}
void solve(){
int n, m, k;
cin >> n >> m >> k;
ll sum = 0;
bool sub3 = true;
for (int i = 1; i < n; i++){
int p;
cin >> p;
--p;
if (p != i - 1) sub3 = false;
g[p].push_back(i);
}
map<int, int> mp;
vector<int> a(n);
for (int i = 0; i < m; i++){
int v, d, w;
cin >> v >> d >> w;
--v;
mp[d];
fruit[v] = MP(d, w);
sum += w;
a[v] = d;
if (w != 1) sub3 = false;
}
if (sub3){
cout << LIS(a) << endl;
return;
}
mp[0];
k = 0;
for (auto &now : mp){
now.second = ++k;
}
for (int i = 0; i < n; i++){
fruit[i].first = mp[fruit[i].first];
}
if (k > 1000){
cout << sum << endl;
return;
}
dp.assign(n, vector<ll>(k + 1, 0));
dfs(0);
cout << dp[0].back() << endl;
}
int main() {
ios_base::sync_with_stdio(false);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
solve();
return 0;
}
Compilation message
magictree.cpp: In function 'void dfs(int)':
magictree.cpp:44:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for (int t = 1; t < dp[v].size(); t++){
| ~~^~~~~~~~~~~~~~
magictree.cpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for (int t = 1; t < dp[v].size(); t++) dp[v][t] = max(dp[v][t], dp[v][t - 1]);
| ~~^~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
2 ms |
2644 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2644 KB |
Output is correct |
5 |
Incorrect |
2 ms |
2644 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
45 ms |
6236 KB |
Output is correct |
2 |
Correct |
30 ms |
7228 KB |
Output is correct |
3 |
Correct |
84 ms |
7248 KB |
Output is correct |
4 |
Correct |
72 ms |
6992 KB |
Output is correct |
5 |
Correct |
95 ms |
7308 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
2644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
60 ms |
12524 KB |
Output is correct |
2 |
Correct |
56 ms |
10900 KB |
Output is correct |
3 |
Correct |
55 ms |
15276 KB |
Output is correct |
4 |
Correct |
38 ms |
11292 KB |
Output is correct |
5 |
Correct |
46 ms |
18704 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
2 ms |
2644 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2644 KB |
Output is correct |
5 |
Incorrect |
2 ms |
2644 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
154 ms |
127948 KB |
Output is correct |
2 |
Correct |
725 ms |
607500 KB |
Output is correct |
3 |
Correct |
686 ms |
610604 KB |
Output is correct |
4 |
Correct |
957 ms |
789084 KB |
Output is correct |
5 |
Correct |
1842 ms |
787864 KB |
Output is correct |
6 |
Correct |
939 ms |
789780 KB |
Output is correct |
7 |
Correct |
888 ms |
791852 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
2 ms |
2644 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2644 KB |
Output is correct |
5 |
Incorrect |
2 ms |
2644 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
2 ms |
2644 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2644 KB |
Output is correct |
5 |
Incorrect |
2 ms |
2644 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |