BZOJ 2103/3302/2447 消防站 树的重心【DFS】【TreeDP】

2103: Fire 消防站

Time Limit: 30 Sec  Memory Limit: 259 MB
Submit: 157  Solved: 116
[Submit][Status][Discuss]

Description

Input

共N+1行。 第一行有一个正整数N,表示区域的个数。 接下来有N-1行,每行两个整数u、v,表述区域u和区域v之间有一条道路。 最后一行有N个正整数,第i个正整数表示区域i的权值W(i)。

Output

包含一个正整数,为最小的S(x, y)的值。

Sample Input

5
1 2
1 3
3 4
3 5
5 7 6 5 4

Sample Output

14
【样例解释】
选取区域2和区域3。
【数据规模和约定】
用H表示距离区域1最远结点的距离,即d(1, u)的最大值。
对于30%的数据满足:2 ≤ N ≤ 5000、H ≤ 30
对于70%的数据满足:2 ≤ N ≤ 50000、H ≤ 30
对于100%的数据满足:2 ≤ N ≤ 50000、H ≤ 70、W(i) ≤ 100

http://blog.csdn.net/braketbn/article/details/51055715

 1 #pragma GCC optimize(2)
 2 #pragma G++ optimize(2)
 3 #include<iostream>
 4 #include<algorithm>
 5 #include<cmath>
 6 #include<cstdio>
 7 #include<cstring>
 8
 9 #define ll long long
10 #define N 50007
11 #define inf 1000000007
12 using namespace std;
13 inline int read()
14 {
15     int x=0,f=1;char ch=getchar();
16     while(!isdigit(ch)){if(ch==‘-‘)f=-1;ch=getchar();}
17     while(isdigit(ch)){x=(x<<1)+(x<<3)+ch-‘0‘;ch=getchar();}
18     return x*f;
19 }
20
21 int n,cut;
22 int fa[N],dep[N],mx1[N],mx2[N];
23 ll sum[N],res[N],ans;
24 int cnt,hed[N],rea[N<<1],nxt[N<<1];
25
26 void add(int u,int v)
27 {
28     nxt[++cnt]=hed[u];
29     hed[u]=cnt;
30     rea[cnt]=v;
31 }
32 void dfs(int u)
33 {
34     for (int i=hed[u];~i;i=nxt[i])
35     {
36         int v=rea[i];
37         if(v==fa[u])continue;
38         dep[v]=dep[u]+1,fa[v]=u;
39         dfs(v);
40         sum[u]+=sum[v];
41         res[u]+=res[v]+sum[v];
42         if(!mx1[u]||sum[v]>sum[mx1[u]])mx2[u]=mx1[u],mx1[u]=v;
43         else if(!mx2[u]||sum[v]>sum[mx2[u]])mx2[u]=v;
44     }
45 }
46 void find_center(ll &ret,int rt,int x,ll k,int jd)
47 {
48     ret=min(ret,k);
49     int v=mx1[x];
50     if(v==cut||sum[mx2[x]]>sum[mx1[x]])v=mx2[x];
51     if(!v)return;
52     find_center(ret,rt,v,k+sum[rt]-2*sum[v],jd);
53 }
54 void solve(int u)
55 {
56     for (int i=hed[u];~i;i=nxt[i])
57     {
58         int v=rea[i];cut=rea[i];
59         if(v==fa[u])continue;
60         ll gx=inf,gy=inf;
61         for (int j=u;j;j=fa[j])sum[j]-=sum[cut];
62         find_center(gx,1,1,res[1]-res[cut]-dep[cut]*sum[cut],u);
63         find_center(gy,cut,cut,res[cut],u);
64         ans=min(ans,gx+gy);
65         for (int j=u;j;j=fa[j])sum[j]+=sum[cut];
66         solve(v);
67     }
68 }
69 int main()
70 {
71     n=read();
72     memset(hed,-1,sizeof(hed));
73     for (int i=1;i<n;i++)
74     {
75         int x=read(),y=read();
76         add(x,y),add(y,x);
77     }
78     for (int i=1;i<=n;i++)
79         sum[i]=read();
80     ans=inf;
81     dfs(1);
82     solve(1);
83     printf("%lld\n",ans);
84 }

原文地址:https://www.cnblogs.com/fengzhiyuan/p/8503937.html

时间: 2024-10-13 00:59:25

BZOJ 2103/3302/2447 消防站 树的重心【DFS】【TreeDP】的相关文章

树的重心(DFS)

#include<iostream>#include<algorithm>#include<string.h>#include<vector>#include<cmath>using namespace std;const int maxn=1e5+10;vector<int>v[maxn];int subtree[maxn];//表示每点除去自身所对应的子树大小bool vis[maxn];//用以标记,去重int n;void d

BZOJ.3510.首都(LCT 启发式合并 树的重心)

题目链接 BZOJ 洛谷 详见这. 求所有点到某个点距离和最短,即求树的重心.考虑如何动态维护. 两棵子树合并后的重心一定在两棵树的重心之间那条链上,所以在合并的时候用启发式合并,每合并一个点检查sz[]大的那棵子树的重心(记为root)最大子树的sz[] * 2是否>n: 若>n,则向fa移动一次(先把合并点Splay到根).重心还一定是在sz[]大的那棵子树中,且移动次数不会超过sz[]小的子树的点数(所以总移动次数不会超过O(n)?). 复杂度 \(O(nlog^2n)\) 具体实现..

poj 1655 树的重心

Balancing Act Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13178   Accepted: 5565 Description Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1...N. Deleting any node from the tree yields a forest: a collection of one or m

poj1655 Balancing Act 求树的重心

http://poj.org/problem?id=1655 Balancing Act Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9072   Accepted: 3765 Description Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1...N. Deleting any node from the tree yields a fo

poj 1655 找树的重心

树形DP 求树的重心,即选择一个结点删去,使得分出的 若干棵树的结点数 的最大值最小 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 #include<map> #include<set>

POJ1655 Balancing Act(树的重心)

题目链接 Balancing Act 就是求一棵树的重心,然后统计答案. 1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 #define REP(i,n) for(int i(0); i < (n); ++i) 6 #define for_edge(i,x) for(int i = H[x]; i; i = X[i]) 7 8 const int INF = 1 << 30; 9 const int N = 10

51nod 配对(求树的重心)

传送门:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1737 给出一棵n个点的树,将这n个点两两配对,求所有可行的方案中配对两点间的距离的总和最大为多少. Input 一个数n(1<=n<=100,000,n保证为偶数) 接下来n-1行每行三个数x,y,z表示有一条长度为z的边连接x和y(0<=z<=1,000,000,000) Output 一个数表示答案 Input示例 6 1 2 1 1 3 1

codeforces 685B Kay and Snowflake 树的重心

分析:就是找到以每个节点为根节点的树的重心 树的重心可以看这三篇文章: 1:http://wenku.baidu.com/link?url=yc-3QD55hbCaRYEGsF2fPpXYg-iO63WtCFbg4RXHjERwk8piK3dgeKKvUBprOW8hJ7aN7h4ZC09QE9x6hYV3lD7bEvyOv_l1E-ucxjHJzqi 2:http://fanhq666.blog.163.com/blog/static/81943426201172472943638/ 3:ht

POJ 1655 Balancing Act (求树的重心)

求树的重心,直接当模板吧.先看POJ题目就知道重心什么意思了... 重心:删除该节点后最大连通块的节点数目最小 1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<queue> 5 #include<stack> 6 using namespace std; 7 #define LL long long 8 #define clc(a,b) memset(a