#include <stdio.h>
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
//#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mp make_pair
#define f first
#define s second
#define ld long double
const ll maxn = 6e4 + 1, maxm = 1e6 + 1;
const ll mod = 1e9 + 7, inf = 1e9, block = 550, hb = 31, base = 1000050017, biginf = 5e18;
const ld eps = 1e-9;
int n, k, q, timer, lac;
int tin[maxn], tout[maxn], used[maxn], up[20][maxn], p[maxn], sz[maxn], anc[maxn], zu[maxn], zu2[maxn];
vector<int> g[maxn];
vector<pair<int, int>> zp[maxn];
int type[maxn], uu[maxn], vv[maxn], t[maxn], t2[maxn], lc[maxn];;
int get(int v){
if (v == p[v])
return v;
return p[v] = get(p[v]);
}
void unite(int a, int b, int x){
a = get(a), b = get(b);
if (sz[a] > sz[b])
swap(a, b);
p[a] = b, anc[b] = x;
sz[b] += sz[a];
}
void dfs(int v = 1, int pr = 0){
up[0][v] = pr, tin[v] = ++timer;
for (int i = 1; i <= 19; ++i){
up[i][v] = up[i - 1][up[i - 1][v]];
}
used[v] = 1;
for (auto to : g[v]){
if (to != pr){
dfs(to, v);
unite(to, v, v);
}
}
for (auto it : zp[v]){
int ver = it.f, x = it.s;
if (used[ver]){
lc[x] = anc[get(ver)];
}
}
tout[v] = ++timer;
}
struct fenwick{
int f[maxn];
void upd(int pos, int val){
for (int i = pos; i <= timer; i |= (i + 1)){
f[i] += val;
}
}
int get(int pos){
int res = 0;
for (int i = pos; i >= 1; i = (i & (i + 1)) - 1){
res += f[i];
}
return res;
}
} rt[21][20];
ll calc(int x, int d, int p, int y){
ll ky = y / d, k2 = y % d;
ll z = rt[d][p].get(x);
ll sum = ky * z + (k2 >= p) * z;
return sum;
}
ll calc2(int u, int v, int x){
if (x < 0)
return 0;
ll res = 0;
ll parik = up[0][lac];
for (int i = 1; i <= 20; ++i){
for (int j = 0; j < i; ++j){
ll add = calc(tin[u], i, j, x) + calc(tin[v], i, j, x) - calc(tin[lac], i, j, x);
if (parik > 0){
add -= calc(tin[parik], i, j, x);
}
res += add;
}
}
return res;
}
void upd(int u, int v, int x, int is){
vector<int> path;
while (u != x){
path.pb(u);
u = up[0][u];
}
vector<int> pp;
while (v != x){
pp.pb(v);
v = up[0][v];
}
pp.pb(x);
reverse(pp.begin(), pp.end());
for (auto it : pp){
path.pb(it);
}
int len = (int)path.size();
if (is == 1){
for (int i = 0; i < len; ++i){
rt[len][i].upd(tin[path[i]], 1);
rt[len][i].upd(tout[path[i]], -1);
}
}
else{
for (int i = 0; i < len; ++i){
rt[len][i].upd(tin[path[i]], -1);
rt[len][i].upd(tout[path[i]], 1);
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 1; i <= n; ++i){
sz[i] = 1;
}
for (int i = 1; i < n; ++i){
int u, v;
cin >> u >> v;
g[u].pb(v);
g[v].pb(u);
}
int kekich = 0;
cin >> k;
for (int i = 1; i <= k; ++i){
cin >> zu[i] >> zu2[i];
zp[zu[i]].pb(mp(zu2[i], ++kekich));
zp[zu2[i]].pb(mp(zu[i], kekich));
}
cin >> q;
for (int i = 1; i <= q; ++i){
cin >> type[i];
cin >> uu[i] >> vv[i];
zp[uu[i]].pb(mp(vv[i], ++kekich));
zp[vv[i]].pb(mp(uu[i], kekich));
if (type[i] == 3){
cin >> t[i] >> t2[i];
}
}
dfs();
int lkek = 0;
for (int i = 1; i <= k; ++i){
++lkek;
int lca = lc[lkek];
upd(zu[i], zu2[i], lca, 1);
}
for (int i = 1; i <= q; ++i){
++lkek;
if (type[i] == 1){
int lca = lc[lkek];
upd(uu[i], vv[i], lca, 1);
}
else if (type[i] == 2){
int lca = lc[lkek];
upd(uu[i], vv[i], lca, 0);
}
else{
lac = lc[lkek];
ll ans = calc2(uu[i], vv[i], t2[i]) - calc2(uu[i], vv[i], t[i] - 1);
cout << ans << '\n';
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
595 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Runtime error |
608 ms |
524288 KB |
Execution killed with signal 9 |
3 |
Runtime error |
610 ms |
524288 KB |
Execution killed with signal 9 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
626 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Runtime error |
612 ms |
524288 KB |
Execution killed with signal 9 |
3 |
Runtime error |
39 ms |
37164 KB |
Execution killed with signal 11 |
4 |
Runtime error |
618 ms |
524288 KB |
Execution killed with signal 9 |
5 |
Runtime error |
616 ms |
524288 KB |
Execution killed with signal 9 |
6 |
Runtime error |
632 ms |
524288 KB |
Execution killed with signal 9 |
7 |
Runtime error |
613 ms |
524288 KB |
Execution killed with signal 9 |
8 |
Runtime error |
612 ms |
524288 KB |
Execution killed with signal 9 |
9 |
Runtime error |
609 ms |
524288 KB |
Execution killed with signal 9 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
664 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Runtime error |
666 ms |
524288 KB |
Execution killed with signal 9 |
3 |
Runtime error |
655 ms |
524288 KB |
Execution killed with signal 9 |
4 |
Runtime error |
661 ms |
524288 KB |
Execution killed with signal 9 |
5 |
Runtime error |
665 ms |
524288 KB |
Execution killed with signal 9 |
6 |
Runtime error |
657 ms |
524288 KB |
Execution killed with signal 9 |
7 |
Runtime error |
662 ms |
524288 KB |
Execution killed with signal 9 |
8 |
Runtime error |
671 ms |
524288 KB |
Execution killed with signal 9 |