bzoj 3522: [Poi2014]Hotel

呵呵,一开始天真的我以为求个 西格玛 C(??,3)就好了。。

(题解:比枚举2个数的再多一个,,一样搞)

 1 #include <bits/stdc++.h>
 2 #define LL long long
 3 #define lowbit(x) x&(-x)
 4 #define inf 1e15
 5 using namespace std;
 6 inline int ra()
 7 {
 8     int x=0,f=1; char ch=getchar();
 9     while (ch<‘0‘ || ch>‘9‘) {if (ch==‘-‘) f=-1; ch=getchar();}
10     while (ch>=‘0‘ && ch<=‘9‘) {x=x*10+ch-‘0‘; ch=getchar();}
11     return x*f;
12 }
13 struct edge{int next,to;}e[10005];
14 int tot[5005],mx,n,head[5005],cnt,s1[5005],s2[5005];
15 LL ans;
16 void insert(int x, int y){e[++cnt].next=head[x]; e[cnt].to=y; head[x]=cnt;}
17 void dfs(int x, int fa, int deep)
18 {
19     tot[deep]++;
20     mx=max(mx,deep);
21     for (int i=head[x];i;i=e[i].next)
22     {
23         if (e[i].to==fa) continue;
24         dfs(e[i].to,x,deep+1);
25     }
26 }
27 int main(int argc, char const *argv[])
28 {
29     n=ra();
30     for (int i=1; i<n; i++)
31     {
32         int x=ra(),y=ra();
33         insert(x,y); insert(y,x);
34     }
35     for (int x=1; x<=n; x++)
36     {
37         memset(s1,0,sizeof(s1));
38         memset(s2,0,sizeof(s2));
39         for (int i=head[x];i;i=e[i].next)
40         {
41             dfs(e[i].to,x,1);
42             for (int j=1; j<=mx; j++)
43             {
44                 ans+=s2[j]*tot[j];
45                 s2[j]+=s1[j]*tot[j];
46                 s1[j]+=tot[j];
47             }
48             for (int j=1; j<=mx; j++) tot[j]=0;
49         }
50     }
51     cout<<ans;
52     return 0;
53 }
时间: 2024-10-21 15:47:23

bzoj 3522: [Poi2014]Hotel的相关文章

BZOJ 3522 [Poi2014] Hotel 题解

题意:求一棵边权全都是1的树上,集合大小为3,且集合内点两两距离相等的集合个数. NOIP2014 D1T2加强版.. 通过分析发现,满足这样的点对一定是在有根树中深度相同,且不再同一棵以根节点儿子为根的子树中. 于是我们枚举根.. 三个点的集合个数是由2个点的集合个数转移过来的..2个又是由一个转移过来的.用两个数组保存一下即可. 1 #include<cstdio> 2 #include<cstring> 3 #include<vector> 4 #include&

3522: [Poi2014]Hotel( 树形dp )

枚举中点x( 即选出的三个点 a , b , c 满足 dist( x , a ) = dist( x , b ) = dist( x , c ) ) , 然后以 x 为 root 做 dfs , 显然两个位于 x 的同一颗子树内的点是不可能被同时选到的 . 我们对 x 的每一颗子树进行 dfs , 记录下当前子树中的点到 x 距离为 d ( 1 <= d <= n ) 有多少个 , 记为 cnt[ 0 ][ i ] . 然后 cnt[ 1 ][ i ] 记录之前 dfs 过的子树的 cnt[

3522: [Poi2014]Hotel

3522: [Poi2014]Hotel Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 253  Solved: 117[Submit][Status][Discuss] Description 有一个树形结构的宾馆,n个房间,n-1条无向边,每条边的长度相同,任意两个房间可以相互到达.吉丽要给他的三个妹子各开(一个)房(间).三个妹子住的房间要互不相同(否则要打起来了),为了让吉丽满意,你需要让三个房间两两距离相同.有多少种方案能让吉丽满意?

@bzoj - [email&#160;protected] [POI2014]Hotel加强版

目录 @[email protected] @[email protected] @part - [email protected] @part - [email protected] @accepted [email protected] @[email protected] @[email protected] 给定一棵树,求无序三元组 (a, b, c) 的个数,使得 dis(a, b) = dis(b, c) = dis(c, a),且 a ≠ b, b ≠ c, c ≠ a. inpu

BZOJ 3522 POI 2014 Hotel 树形DP

题目大意 给出一棵树,问选择三个点,使得这三个点相互的距离相等的方案有多少种. 思路 这三个点肯定不能再一条链上, 那么就肯定能够确定一个中心点,使得三个点到这个中心点的距离都相等. 之后我们就可以枚举这个中心点,对于每个深度统计一下就可以了.虽然看起来像是O(n3)的,但是跑的飞起啊. CODE #define _CRT_SECURE_NO_WARNINGS #include <cstdio> #include <cstring> #include <iostream>

BZOJ 3524: [Poi2014]Couriers

3524: [Poi2014]Couriers Time Limit: 20 Sec  Memory Limit: 256 MBSubmit: 1905  Solved: 691[Submit][Status][Discuss] Description 给一个长度为n的序列a.1≤a[i]≤n.m组询问,每次询问一个区间[l,r],是否存在一个数在[l,r]中出现的次数大于(r-l+1)/2.如果存在,输出这个数,否则输出0. Input 第一行两个数n,m.第二行n个数,a[i].接下来m行,

bzoj 3831: [Poi2014]Little Bird

3831: [Poi2014]Little Bird Description In the Byteotian Line Forest there are   trees in a row. On top of the first one, there is a little bird who would like to fly over to the top of the last tree. Being in fact very little, the bird might lack the

BZOJ 3524: [Poi2014]Couriers( 主席树 )

卡我空间.... 这道题应该是主席树入门题...无修改 , 离散化都不用...出题人业界良心啊 一开始的空白树我 build 出来结果就多了整整 2n 个 Node , 然后就 MLE 了... ( 双倍经验 , 另一道见上图 ) ---------------------------------------------------------------------------------------------- #include<cstdio> #include<cstring&g

bzoj 3832: [Poi2014]Rally(线段树+拓扑排序)

3832: [Poi2014]Rally Time Limit: 20 Sec  Memory Limit: 128 MBSec  Special Judge Submit: 113  Solved: 56 [Submit][Status][Discuss] Description An annual bicycle rally will soon begin in Byteburg. The bikers of Byteburg are natural long distance cyclis