220722 T1 分树 (模拟)
生活随笔
收集整理的這篇文章主要介紹了
220722 T1 分树 (模拟)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
dfs一遍求出以每個節點為根的子樹大小,然后枚舉n的約數,對于每個約數i,統計sz[ ]是i的倍數的有多少個(開桶統計),如果有n/i個則答案+1。
這道題也就是個結論題,畫圖分析一下。復雜度O(n*sqrt(n))
1 #include<bits/stdc++.h>
2 using namespace std;
3 const int N=2e6+10;
4 int head[N],to[N],nxt[N],tot;
5 void add(int u,int v){
6 nxt[++tot]=head[u];
7 head[u]=tot;
8 to[tot]=v;
9 }
10 int n,ans,sz[N],t[N];//t[]是桶
11
12 void dfs(int u,int f){
13 sz[u]=1;
14 for(int i=head[u];i;i=nxt[i]){
15 int v=to[i];
16 if(v==f) continue;
17 dfs(v,u);
18 sz[u]+=sz[v];
19 }
20 t[sz[u]]++;
21 }
22
23 int main(){
24 scanf("%d",&n);
25 for(int i=1;i<n;i++){
26 int u,v;scanf("%d%d",&u,&v);
27 add(u,v),add(v,u);
28 }
29 dfs(1,0);
30 for(int i=1;i<=n;i++){
31 if(n%i==0){
32 int s=0;
33 for(int j=1;j<=n/i;j++) //枚舉倍數
34 s+=t[i*j];
35 ans+=(s==n/i);
36 }
37 }
38 cout<<ans<<endl;
39 return 0;
40 }
總結
以上是生活随笔為你收集整理的220722 T1 分树 (模拟)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Codeforces Round #81
- 下一篇: 【剑指Offer】面试题26. 树的子结