#include <bits/stdc++.h>
using namespace std;
#define forn(i,n) for (int i=0; i<n; ++i)
//#define int long long
vector<vector<int>> adj(5001);
vector<vector<int>> cnt(5001,vector<int>(5001,0));
int path[5001];
int ptr=0;
void dfs(int u, int p, int to) {
for (auto v:adj[u]) {
if (v==p) continue;
if (v==to) {
path[ptr++]=v;
path[ptr++]=u;
return;
}
dfs(v,u,to);
if (ptr && path[ptr-1]==v) {
path[ptr++]=u;
return;
}
}
}
void solve() {
int n; cin>>n;
if (n>5000) exit(0);
forn(i,n-1) {
int u,v; cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
for (int i=0; i<=5000; ++i) {
path[i]=0;
}
int K; cin>>K;
forn(q,K) {
int u,v; cin>>u>>v;
ptr=0;
dfs(u,0,v);
for (int l=0, r=ptr-1; l<r; ++l, --r) {
swap(path[l],path[r]);
}
for (int i=0; i<ptr; ++i) {
for (int j=0; j*ptr+i<5000; ++j) cnt[path[i]][j*ptr+i]++;
}
}
int Q; cin>>Q;
forn(QQ,Q) {
int q; cin>>q;
if (q==1) {
int u,v; cin>>u>>v;
ptr=0;
dfs(u,0,v);
for (int l=0, r=ptr-1; l<r; ++l, --r) {
swap(path[l],path[r]);
}
for (int i=0; i<ptr; ++i) {
for (int j=0; j*ptr+i<5000; ++j) cnt[path[i]][j*ptr+i]++;
}
} else if (q==2) {
int u,v; cin>>u>>v;
ptr=0;
dfs(u,0,v);
for (int l=0, r=ptr-1; l<r; ++l, --r) {
swap(path[l],path[r]);
}
for (int i=0; i<ptr; ++i) {
for (int j=0; j*ptr+i<5000; ++j) cnt[path[i]][j*ptr+i]--;
}
} else {
int u,v; cin>>u>>v;
ptr=0;
dfs(u,0,v);
for (int l=0, r=ptr-1; l<r; ++l, --r) {
swap(path[l],path[r]);
}
int ans=0;
int l,r; cin>>l>>r;
for (int i=0; i<ptr; ++i) {
for (int j=l; j<=r; ++j) ans+=cnt[path[i]][j];
}
cout<<ans<<'\n';
}
}
}
int32_t main() {
solve();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
49 ms |
98452 KB |
Output isn't correct |
2 |
Incorrect |
72 ms |
98564 KB |
Output isn't correct |
3 |
Incorrect |
66 ms |
98448 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
38 ms |
98380 KB |
Output isn't correct |
2 |
Incorrect |
38 ms |
98380 KB |
Output isn't correct |
3 |
Incorrect |
40 ms |
98352 KB |
Output isn't correct |
4 |
Incorrect |
40 ms |
98376 KB |
Output isn't correct |
5 |
Incorrect |
44 ms |
98364 KB |
Output isn't correct |
6 |
Incorrect |
42 ms |
98420 KB |
Output isn't correct |
7 |
Incorrect |
43 ms |
98380 KB |
Output isn't correct |
8 |
Incorrect |
52 ms |
98392 KB |
Output isn't correct |
9 |
Incorrect |
53 ms |
98464 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
98412 KB |
Output isn't correct |
2 |
Incorrect |
41 ms |
98380 KB |
Output isn't correct |
3 |
Incorrect |
42 ms |
98412 KB |
Output isn't correct |
4 |
Incorrect |
44 ms |
98400 KB |
Output isn't correct |
5 |
Incorrect |
46 ms |
98460 KB |
Output isn't correct |
6 |
Incorrect |
43 ms |
98380 KB |
Output isn't correct |
7 |
Incorrect |
41 ms |
98368 KB |
Output isn't correct |
8 |
Incorrect |
42 ms |
98380 KB |
Output isn't correct |