// Om Namah Shivaya
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template<typename T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long int ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL)
#define pb push_back
#define endl '\n'
#define sz(a) a.size()
#define setbits(x) __builtin_popcountll(x)
#define ff first
#define ss second
#define conts continue
#define ceil2(x, y) ((x + y - 1) / (y))
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define rep(i, n) for(int i = 0; i < n; ++i)
#define rep1(i, n) for(int i = 1; i <= n; ++i)
#define rev(i, s, e) for(int i = s; i >= e; --i)
#define trav(i, a) for(auto &i : a)
template<typename T>
void amin(T &a, T b) {
a = min(a, b);
}
template<typename T>
void amax(T &a, T b) {
a = max(a, b);
}
#ifdef LOCAL
#include "debug.h"
#else
#define debug(x) 42
#endif
/*
*/
const int MOD = 1e9 + 7;
const int N = 1e5 + 5;
const int inf1 = int(1e9) + 5;
const ll inf2 = ll(1e18) + 5;
vector<pll> adj[N];
vector<ll> a(N);
vector<bool> rem(N);
vector<ll> subsiz(N);
ll dfs1(ll u, ll p) {
subsiz[u] = 1;
for (auto [v, w] : adj[u]) {
if (v == p or rem[v]) conts;
subsiz[u] += dfs1(v, u);
}
return subsiz[u];
}
ll dfs2(ll u, ll p, ll nodes) {
for (auto [v, w] : adj[u]) {
if (v == p or rem[v]) conts;
if (subsiz[v] > nodes / 2) {
return dfs2(v, u, nodes);
}
}
return u;
}
vector<ll> sumup(N), mnprefup(N);
vector<array<ll, 3>> here[N];
ll curr_centroid;
vector<ll> sub_roots;
void dfs3(ll u, ll p, ll uu, ll sumdown, ll mnprefdown) {
here[curr_centroid].pb({sumup[u], mnprefup[u], mnprefdown});
if (uu != -1) {
here[uu].pb({sumup[u], mnprefup[u], mnprefdown});
}
// vector<ll> vals = {sumup[u], mnprefup[u], mnprefdown};
// debug(curr_centroid);
// debug(u);
// debug(vals);
// cout << endl;
for (auto [v, w] : adj[u]) {
if (v == p or rem[v]) conts;
sumup[v] = a[v] - w + sumup[u];
mnprefup[v] = min(a[v] - w, a[v] - w + mnprefup[u]);
ll uu2 = uu;
if (uu == -1) {
uu2 = v;
sub_roots.pb(v);
}
dfs3(v, u, uu2, sumdown + a[u] - w, min(mnprefdown, sumdown + a[u] - w));
}
}
ll get(vector<array<ll, 3>> v) {
vector<ll> vals;
for (auto [sum, mnprefup, mnprefdown] : v) {
vals.pb(mnprefdown);
}
sort(all(vals));
ll res = 0;
for (auto [sum, mnprefup, mnprefdown] : v) {
if (mnprefup < 0) conts;
ll cnt = vals.end() - lower_bound(all(vals), -sum);
if (mnprefdown >= -sum) {
cnt--;
}
res += cnt;
}
return res;
}
ll ans = 0;
ll build(ll u, ll p) {
ll nodes = dfs1(u, -1);
ll centroid = dfs2(u, -1, nodes);
rem[centroid] = 1;
sumup[centroid] = 0;
mnprefup[centroid] = 0;
curr_centroid = centroid;
sub_roots.clear();
dfs3(centroid, -1, -1, 0, 0);
trav(v, sub_roots) {
ans -= get(here[v]);
here[v].clear();
here[v].shrink_to_fit();
}
ans += get(here[centroid]);
here[centroid].clear();
here[centroid].shrink_to_fit();
for (auto [v, w] : adj[centroid]) {
if (rem[v]) conts;
build(v, centroid);
}
return centroid;
}
// void dfs4(ll u, ll p) {
// vector<array<ll, 3>> big;
// big.pb(here[u].back());
// here[u].pop_back();
// nodes[u].pb(u);
// trav(v, adjc[u]) {
// if (v == p) conts;
// dfs4(v, u);
// vector<array<ll, 3>> curr_centroid;
// trav(node, nodes[v]) {
// curr_centroid.pb(here[node].back());
// big.pb(here[node].back());
// nodes[u].pb(node);
// here[node].pop_back();
// }
// nodes[v].clear();
// nodes[v].shrink_to_fit();
// ans -= get(curr_centroid);
// }
// // debug(u);
// // trav(ar, big) {
// // vector<ll> v(all(ar));
// // debug(v);
// // }
// // debug(get(big));
// // cout << endl;
// ll temp = get(big);
// ans += temp;
// // debug(temp);
// // if (u == 4) {
// // trav(ar, big) {
// // vector<ll> v(all(ar));
// // debug(v);
// // }
// // debug(temp);
// // }
// // ans += get(big);
// }
void solve(int test_case)
{
ll n; cin >> n;
rep1(i, n) cin >> a[i];
rep1(i, n - 1) {
ll u, v, w; cin >> u >> v >> w;
adj[u].pb({v, w}), adj[v].pb({u, w});
}
ll root = build(1, -1);
// dfs4(root, -1);
cout << ans << endl;
}
int main()
{
fastio;
int t = 1;
// cin >> t;
rep1(i, t) {
solve(i);
}
return 0;
}
Compilation message
transport.cpp: In function 'void solve(int)':
transport.cpp:230:8: warning: unused variable 'root' [-Wunused-variable]
230 | ll root = build(1, -1);
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
8532 KB |
Output is correct |
2 |
Correct |
10 ms |
8660 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
8916 KB |
Output is correct |
2 |
Correct |
12 ms |
9172 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
89 ms |
16320 KB |
Output is correct |
2 |
Correct |
85 ms |
15628 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
126 ms |
19148 KB |
Output is correct |
2 |
Correct |
142 ms |
21276 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
183 ms |
25680 KB |
Output is correct |
2 |
Correct |
223 ms |
29260 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
61 ms |
11468 KB |
Output is correct |
2 |
Correct |
42 ms |
11004 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
69 ms |
13588 KB |
Output is correct |
2 |
Correct |
101 ms |
13324 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
169 ms |
15192 KB |
Output is correct |
2 |
Correct |
150 ms |
15392 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
221 ms |
17792 KB |
Output is correct |
2 |
Correct |
225 ms |
18092 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
277 ms |
23308 KB |
Output is correct |
2 |
Correct |
240 ms |
22016 KB |
Output is correct |