BZOJ3754 Tree之最小方差树

Orz AutSky_JadeK他已经讲的很详细了,我只是个酱油233

(p.s. 这输出样例是错的。。。对的应该是0.7071貌似= =)

 1 /**************************************************************
 2     Problem: 3754
 3     User: rausen
 4     Language: C++
 5     Result: Accepted
 6     Time:9024 ms
 7     Memory:892 kb
 8 ****************************************************************/
 9
10 #include <cstdio>
11 #include <cmath>
12 #include <algorithm>
13
14 using namespace std;
15 typedef double lf;
16 const int N = 105;
17 const int M = 2005;
18 const int Maxlen = 30005;
19
20 struct edges {
21     int x, y, v;
22     lf w;
23
24     inline bool operator < (const edges &b) const {
25         return w < b.w;
26     }
27 } e[M];
28 inline bool cmp_min(edges a, edges b) {
29     return a.v < b.v;
30 }
31 inline bool cmp_max(edges a, edges b) {
32     return a.v > b.v;
33 }
34
35
36 int n,m, Min, Max, fa[N];
37 lf ans = (lf) 1e15;
38
39 char buf[Maxlen], *c = buf;
40 int Len;
41
42 inline int read() {
43     int x = 0;
44     while (*c < ‘0‘ || ‘9‘ < *c) ++c;
45     while (‘0‘ <= *c && *c <= ‘9‘)
46         x = x * 10 + *c - ‘0‘, ++c;
47     return x;
48 }
49
50 lf Sqr(lf x) {
51     return x * x;
52 }
53
54 int find(int x) {
55     return x == fa[x] ? x : fa[x] = find(fa[x]);
56 }
57
58 void work(int sum) {
59     lf A = (lf) sum / (n - 1), res = 0;
60     int cost = 0, tot = 0, fa1, fa2, i;
61     for (i = 1; i <= n; ++i)
62         fa[i] = i;
63     for (i = 1; i <= m; ++i)
64         e[i].w = Sqr((lf) e[i].v - A);
65     sort(e + 1, e + m + 1);
66     for (i = 1; i <= m; ++i)
67         if ((fa1 = find(e[i].x)) != (fa2 = find(e[i].y))) {
68             fa[fa1] = fa2;
69             cost += e[i].v;
70             res += e[i].w;
71             if (++tot == n - 1) break;
72         }
73     if (cost == sum)
74         ans = min(ans, res);
75 }
76
77 int main() {
78     int i;
79     Len = fread(c, 1, Maxlen, stdin);
80     buf[Len] = ‘\0‘;
81     n = read(), m = read();
82     for (i = 1; i <= m; ++i)
83         e[i].x = read(), e[i].y = read(), e[i].v = read();
84     sort(e + 1, e + m + 1, cmp_min);
85     for (i = 1; i < n; ++i)
86         Min += e[i].v;
87     sort(e + 1, e + m + 1, cmp_max);
88     for (i = 1; i < n; ++i)
89         Max += e[i].v;
90     for (i = Min; i <= Max; ++i)
91         work(i);
92     printf("%.4lf\n", sqrt((lf) ans / (n - 1)));
93 }

时间: 2024-10-11 17:09:10

BZOJ3754 Tree之最小方差树的相关文章

【枚举】【最小生成树】【kruscal】bzoj3754 Tree之最小方差树

发现,若使方差最小,则使Σ(wi-平均数)最小即可. 因为权值的范围很小,所以我们可以枚举这个平均数,每次把边权赋成(wi-平均数)2,做kruscal. 但是,我们怎么知道枚举出来的平均数是不是恰好是我们的这n-1条边的呢? 就在更新答案的时候加个特判就行了. 1 #include<cstdio> 2 #include<algorithm> 3 #include<cmath> 4 #include<cstring> 5 using namespace st

【BZOJ3754】Tree之最小方差树

Description Wayne在玩儿一个很有趣的游戏.在游戏中,Wayne建造了N个城市,现在他想在这些城市间修一些公路,当然并不是任意两个城市间都能修,为了道路系统的美观,一共只有M对城市间能修公路,即有若干三元组 (Ui,Vi,Ci)表示Ui和Vi间有一条长度为Ci的双向道路.当然,游戏保证了,若所有道路都修建,那么任意两城市可以互相到达.Wayne拥有恰好N-1支修建队,每支队伍能且仅能修一条道路.当然,修建长度越大,修建的劳累度也越高,游戏设定是修建长度为C的公路就会有C的劳累度.当

BZOJ 3754 Tree之最小方差树 MST

题目大意:求一个图的最小标准差生成树. 思路:毫无思路,之后看了题解.居然是一个很厉害的暴力. 一个很关键的地方:枚举平均值,然后根据(a - ave(a))^2将边排序,做最小生成树.所有的标准差最小值就是答案. 但是这是为什么?如果当前枚举的ave(a)并不是选取的边的平均值怎么办? 那么就一定有一个你会枚举到的ave(a)计算之后的标准差要比现在小. 这样基本就可以说明这个做法的正确性了.但是需要枚举的范围很大,虽然c只有100,但是按照多大枚举呢.很显然是按照EPS = 1.0 / (m

BZOJ 3754 Tree之最小方差树

枚举平均数. mdzz编译器. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #define maxv 100500 #define maxe 200500 using namespace std; int n,m,l=0,r=0,father[maxv],rank[maxv]; double ans=999999

【模板】最小割树(Gomory-Hu Tree)

传送门 Description 给定一个\(n\)个点\(m\)条边的无向连通图,多次询问两点之间的最小割 两点间的最小割是这样定义的:原图的每条边有一个割断它的代价,你需要用最小的代价使得这两个点不连通 Solution 对于一张无向图,如果 \(s \rightarrow t\) 的最大流是 \(f\),\(s\), \(t\) 所在的割集为 \(S\), \(T\),那么 \(\forall_{x \in S, y \in T}\), \(\operatorname{maxflow}(x

【BZOJ-2229】最小割 最小割树(最大流+分治)

2229: [Zjoi2011]最小割 Time Limit: 10 Sec  Memory Limit: 259 MBSubmit: 1565  Solved: 560[Submit][Status][Discuss] Description 小白在图论课上学到了一个新的概念——最小割,下课后小白在笔记本上写下了如下这段话: “对于一个图,某个对图中结点的划分将图中所有结点分成两个部分,如果结点s,t不在同一个部分中,则称这个划分是关于s,t的割. 对于带权图来说,将所有顶点处在不同部分的边的

[LeetCode] Minimum Height Trees 最小高度树

For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all possible rooted trees, those with minimum height are called minimum height trees (MHTs). Given such a graph, write

[ZJOI2011] 最小割 - 最小割树

最小割树裸题 建树后,以每个点为根跑DFS求出距离矩阵,然后暴力回答询问即可 #include <bits/stdc++.h> using namespace std; #define int long long const int maxn=6e2; const int maxm=4e4; const int inf=1e13; int n,m,q; //for the target graph vector <pair<int,int> > g[maxn]; voi

51Nod - 1098 最小方差

51Nod - 1098 最小方差 若x1,x2,x3......xn的平均数为k. 则方差s^2 = 1/n * [(x1-k)^2+(x2-k)^2+.......+(xn-k)^2] . 方差即偏离平方的均值,称为标准差或均方差,方差描述波动程度. 给出M个数,从中找出N个数,使这N个数方差最小. Input 第1行:2个数M,N,(M > N, M <= 10000) 第2 - M + 1行:M个数的具体值(0 <= Xi <= 10000) Output 输出最小方差 *