This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fi first
#define se second
#define pp pop_back
#define ll long long
#define pb push_back
#define ld long double
#define debug cout << "OK\n";
#define all(x) x.begin(), x.end()
#define mp make_pair
using namespace std;
const ll N = 3e5 + 200;
const ll mod = 1e9 + 7;
const ll mod2 = 998244353;
const ll pe = mod2;
const ll pe2 = 570210983;
const ld eps = 1e-6;
/*
Rucode: jaqVYNrpMj
JUDGE_ID: 295965SY
dl:160532
*/
void data() {
}
int n, m, timer;
int tin[N], tout[N], up[25][N];
ll dp[N], dp2[N], l[N], r[N], w[N];
vector<int> g[N], g2[N];
struct fenw
{
ll f[N * 2];
void upd(int pos, ll val)
{
for (int i = pos; i <= N; i = (i | (i + 1)))
f[i] += val;
}
ll sum(int pos)
{
ll res = 0;
for (int i = pos; i >= 1; i = (i & (i + 1)) - 1)
res += f[i];
return res;
}
ll get(int l, int r)
{
if (l > r)
return 0;
return sum(r) - sum(l - 1);
}
} tr, tr2;
void dfs(int v, int p)
{
tin[v] = ++timer;
up[0][v] = max(p, 1);
for (int i = 1; i <= 18; i++)
{
up[i][v] = up[i - 1][up[i - 1][v]];
}
for (int i = 0; i < g[v].size(); i++)
{
int to = g[v][i];
if (to == p)
continue;
dfs(to, v);
}
tout[v] = ++timer;
}
bool upper(int a, int b)
{
return (tin[a] <= tin[b] && tout[b] <= tout[a]);
}
int lca(int a, int b)
{
if (upper(a, b))
return a;
if (upper(b, a))
return b;
for (int i = 18; i >= 0; i--)
{
if (!upper(up[i][a], b))
a = up[i][a];
}
return up[0][a];
}
void dfs2(int v, int p)
{
for (int i = 0; i < g[v].size(); i++)
{
int to = g[v][i];
if (to == p)
continue;
dfs2(to, v);
dp[v] += dp2[to];
}
dp2[v] = dp[v];
for (int i = 0; i < g2[v].size(); i++)
{
int pos = g2[v][i];
int a = l[pos], b = r[pos];
dp2[v] = max(dp2[v] , dp[v] + tr.get(tin[v], tin[a]) + tr.get(tin[v], tin[b])
- tr2.get(tin[v], tin[a]) - tr2.get(tin[v], tin[b]) + w[pos]);
}
tr.upd(tin[v], dp[v]);
tr.upd(tout[v], -dp[v]);
tr2.upd(tin[v], dp2[v]);
tr2.upd(tout[v], -dp2[v]);
}
main()
{
data();
ios_base::sync_with_stdio(0),
cin.tie(0),cout.tie(0);
cin >> n;
for (int i = 1; i < n; i++)
{
int u, v;
cin >> u >> v;
g[u].pb(v), g[v].pb(u);
}
dfs(1, 0);
cin >> m;
for (int i = 1; i <= m; i++)
{
cin >> l[i] >> r[i] >> w[i];
int lc = lca(l[i], r[i]);
g2[lc].pb(i);
}
dfs2(1, 0);
cout << dp2[1];
}
Compilation message (stderr)
election_campaign.cpp: In function 'void dfs(int, int)':
election_campaign.cpp:64:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int i = 0; i < g[v].size(); i++)
| ~~^~~~~~~~~~~~~
election_campaign.cpp: In function 'void dfs2(int, int)':
election_campaign.cpp:92:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
92 | for (int i = 0; i < g[v].size(); i++)
| ~~^~~~~~~~~~~~~
election_campaign.cpp:101:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | for (int i = 0; i < g2[v].size(); i++)
| ~~^~~~~~~~~~~~~~
election_campaign.cpp: At global scope:
election_campaign.cpp:113:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
113 | main()
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |