链接
https://ac.nowcoder.com/acm/contest/72/C
题意
树形图上,对某点进行轰炸,会波及到距离该点不超过 的点
次轰炸,每次都要输出该点受损次数
思路
记 为 受损的次数, 为 的孩子受损的次数, 的孩子的孩子受损的次数
假如轰炸 :
的父亲的父亲受损:
的父亲受损:
以及 的兄弟受损:
的孩子受损:
的孩子的孩子受损:
的总受损次数为:
代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| #include<bits/stdc++.h> using namespace std; #define pb push_back typedef long long ll; const int N=750005; vector<int>g[N]; int fa[N],tot[N][3]; void dfs(int u) { for(auto v:g[u]) { if(v==fa[u]) continue; fa[v]=u; dfs(v); } } int main() { ios::sync_with_stdio(false); cin.tie(0); int n,q; cin>>n>>q; for(int i=1;i<n;i++) { int u,v; cin>>u>>v; g[u].pb(v); g[v].pb(u); } dfs(1); for(int i=1;i<=q;i++) { int x; cin>>x; tot[x][1]++,tot[x][2]++; if(fa[fa[x]]) tot[fa[fa[x]]][0]++; if(fa[x]) tot[fa[x]][0]++,tot[fa[x]][1]++; else tot[x][0]++; cout<<tot[x][0]+tot[fa[x]][1]+tot[fa[fa[x]]][2]<<endl; } return 0; }
|
未找到相关的 Issues 进行评论
请联系 @c4Lnn 初始化创建