#include <bits/stdc++.h>
#define rep(i, l, r) for(int i = l; i <= r; i++)
#define rep2(i, l, r) for(int i = l; i >= r; i--)
#define fi first
#define se second
#define bit(i, x) (x >> i & 1)
using namespace std;
const int N = 1e5 + 3;
const int mod = 1e9 + 7;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
long long rnd(long long l, long long r) {
return uniform_int_distribution<long long>(l, r)(rng);
}
int n, m;
vector<int> G[N];
pair<int, int> e[N];
array<int, 3> qq[N];
int in[N], out[N], rn[N], cnt;
int h[2 * N], rmq[2 * N][19], ct;
void predfs(int u, int par) {
in[u] = ++cnt;
rn[cnt] = u;
rmq[++ct][0] = in[u];
h[in[u]] = ct;
for(auto v : G[u]) if (v != par) {
predfs(v, u);
rmq[++ct][0] = in[u];
}
out[u] = cnt;
}
int lca(int x, int y) {
x = h[in[x]], y = h[in[y]];
if (x > y) swap(x, y);
int kk = 31 - __builtin_clz(y - x + 1);
return rn[min(rmq[x][kk], rmq[y - (1 << kk) + 1][kk])];
}
bool path(int x, int y, int u) {
bool flag = 0;
flag |= (lca(y, u) == u && lca(x, u) == x);
swap(x, y);
flag |= (lca(y, u) == u && lca(x, u) == x);
return flag;
}
bool check(int x, int y, int u, int v) {
int p = lca(x, y);
int g = lca(u, v);
bool flag = 0;
flag |= (path(p, x, u) || path(p, x, v) || path(p, x, g));
flag |= (path(p, y, u) || path(p, y, v) || path(p, y, g));
swap(x, u);
swap(y, v);
swap(p, g);
flag |= (path(p, x, u) || path(p, x, v) || path(p, x, g));
flag |= (path(p, y, u) || path(p, y, v) || path(p, y, g));
return flag;
}
namespace sub1{
long long sol() {
long long res = 0;
rep(mask, 0, (1 << m) - 1) {
long long s = 0;
bool flag = 1;
rep(i, 1, m) if (bit(i - 1, mask)) {
s += qq[i][2];
rep(j, i + 1, m) if (bit(j - 1, mask)) {
if (check(qq[i][0], qq[i][1], qq[j][0], qq[j][1])) flag = 0;
}
}
if (flag) res = max(res, s);
}
return res;
}
}
namespace sub23{
long long dp[N];
long long sol() {
sort(qq + 1, qq + m + 1, [&](array<int, 3> x, array<int, 3> y) {
return x[1] < y[1];
});
long long res = 0;
for(int i = 1, j = 1, k = 1; i <= m; ) {
while(k <= qq[i][1]) {
dp[k] = max(dp[k], dp[k - 1]);
k++;
}
while(j <= m && qq[i][1] == qq[j][1]) {
dp[qq[j][1]] = max(dp[qq[j][1]], dp[qq[j][0] - 1] + qq[j][2]);
j++;
}
res = max(res, dp[qq[i][1]]);
i = j;
}
return res;
// rep(i, 1, m) {
// rep(j, 0, 2) cout << qq[i][j] << " ";
// cout << "\n";
// }
}
}
int main(int argc, char* argv[]) {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
// freopen("testing.txt", "r", stdin);
// freopen("outputing.txt", "w", stdout);
cin >> n;
rep(i, 1, n - 1) {
int u, v; cin >> u >> v;
G[u].push_back(v);
G[v].push_back(u);
e[i] = {u, v};
}
cin >> m;
rep(i, 1, m) {
int u, v, c; cin >> u >> v >> c;
qq[i] = {u, v, c};
}
predfs(1, -1);
rep(j, 1, 18) rep(i, 1, ct - (1 << (j - 1))) rmq[i][j] = min(rmq[i][j - 1], rmq[i + (1 << (j - 1))][j - 1]);
// cout << sub1::sol();
cout << sub23::sol();
}
Compilation message
election_campaign.cpp: In function 'long long int sub1::sol()':
election_campaign.cpp:68:30: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
68 | rep(i, 1, m) if (bit(i - 1, mask)) {
| ~~^~~
election_campaign.cpp:6:25: note: in definition of macro 'bit'
6 | #define bit(i, x) (x >> i & 1)
| ^
election_campaign.cpp:70:36: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
70 | rep(j, i + 1, m) if (bit(j - 1, mask)) {
| ~~^~~
election_campaign.cpp:6:25: note: in definition of macro 'bit'
6 | #define bit(i, x) (x >> i & 1)
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2648 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Incorrect |
1 ms |
2816 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
70 ms |
26976 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2648 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Incorrect |
1 ms |
2816 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2648 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Incorrect |
1 ms |
2816 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |