UVAlive5713 Qin Shi Huang's National Road System【次小生成树】【DP】
题目大意
给你平面上的n个点
每个点有一个权值
让你求出一个生成树
可以选择一条边不花费代价
要最大化这条边两边端点的权值/剩下n-2条边的长度之和
思路
发现发现其实端点权值其实不太好处理
那么我们就用最暴力的方式来枚举这样的一条边
但是显然剩下的部分不能直接暴力最小生成树
那么就直接在原图的最小生成树上面进行考虑
加上一条边一定需要删除一条边
这样的操作一定会删除两点对应生成树链上的最大边权
所以可以预处理生成树上两点之间的最大边权
这个可以用一个简单的树形dp来完成
算法复杂度\(n^2\)也没问题
也可以用主席树来标记永久化维护
但是查询的时候会多一个log
//Author: dream_maker
#include<bits/stdc++.h>
using namespace std;
//----------------------------------------------
typedef pair<int, int> pi;
typedef long long ll;
typedef double db;
#define fi first
#define se second
#define fu(a, b, c) for (int a = b; a <= c; ++a)
#define fd(a, b, c) for (int a = b; a >= c; --a)
#define fv(a, b) for (int a = 0; a < (signed)b.size(); ++a)
const int INF_of_int = 1e9;
const ll INF_of_ll = 1e18;
template <typename T>
void Read(T &x) {
bool w = 1;x = 0;
char c = getchar();
while (!isdigit(c) && c != '-') c = getchar();
if (c == '-') w = 0, c = getchar();
while (isdigit(c)) {
x = (x<<1) + (x<<3) + c -'0';
c = getchar();
}
if (!w) x = -x;
}
template <typename T>
void Write(T x) {
if (x < 0) {
putchar('-');
x = -x;
}
if (x > 9) Write(x / 10);
putchar(x % 10 + '0');
}
//----------------------------------------------
const int M = 1e6 + 10;
const int N = 1e3 + 10;
db dis[N][N], f[N][N];
pi pos[N];
int n, m, p[N];
db getpow(int x) {
return (db)x * (db)x;
}
db getdis(pi x, pi y) {
return sqrt(getpow(x.fi - y.fi) + getpow(x.se - y.se));
}
void getdis() {
fu(i, 1, n) {
fu(j, 1, n) {
dis[i][j] = getdis(pos[i], pos[j]);
}
}
}
struct Edge {
int u, v, nxt;
bool operator < (const Edge b) const {
return dis[u][v] < dis[b.u][b.v];
}
};
struct Map {
Edge E[M << 1];
int head[N], tot, n;
void init(int pn) {
n = pn;
fu(i, 1, n) head[i] = 0;
tot = 0;
}
void addedge(int u, int v) {
E[++tot] = (Edge) {u, v, head[u]};
head[u] = tot;
}
void sortedge() {
sort(E + 1, E + tot + 1);
}
} mp, mst;
struct Union_Find {
int fa[N];
void init(int n) {
fu(i, 1, n) fa[i] = i;
}
int Find(int x) {
return x == fa[x] ? x : fa[x] = Find(fa[x]);
}
bool Merge(int x, int y) {
int fax = Find(x), fay = Find(y);
if (fax == fay) return 0;
fa[fax] = fay;
return 1;
}
} uf;
db Kruskal() {
uf.init(n);
mst.init(n);
int cnt = 0;
db res = 0;
fu(i, 1, mp.tot) {
int u = mp.E[i].u, v = mp.E[i].v;
if (uf.Merge(u, v)) {
mst.addedge(u, v);
mst.addedge(v, u);
res += dis[u][v];
if (++cnt == n - 1) break;
}
}
return res;
}
bool mark[N];
void dfs(int u, int fa) {
mark[fa] = 1;
if (fa) {
fu(j, 1, n) if (u != j) {
f[u][j] = f[j][u] = max(f[fa][j], dis[u][fa]);
}
}
for (int i = mst.head[u]; i; i = mst.E[i].nxt) {
int v = mst.E[i].v;
if (v != fa) dfs(v, u);
}
}
void solve() {
Read(n);
fu(i, 1, n)
Read(pos[i].fi), Read(pos[i].se), Read(p[i]);
getdis();
mp.init(n);
fu(i, 1, n)
fu(j, 1, i - 1)
mp.addedge(i, j);
mp.sortedge();
db tmp = Kruskal();
fu(i, 1, n) mark[i] = 0;
dfs(1, 0);
db ans = 0;
fu(i, 1, n)
fu(j, 1, i - 1)
ans = max(ans, db(p[i] + p[j]) / (tmp - f[i][j]));
printf("%.2lf\n", ans);
}
int main() {
#ifdef dream_maker
freopen("input.txt", "r", stdin);
#endif
int T; Read(T);
while (T--) solve();
return 0;
}
UVAlive5713 Qin Shi Huang's National Road System【次小生成树】【DP】的更多相关文章
- hdu 4081 Qin Shi Huang's National Road System (次小生成树的变形)
题目:Qin Shi Huang's National Road System Qin Shi Huang's National Road System Time Limit: 2000/1000 M ...
- HDU 4081 Qin Shi Huang's National Road System 次小生成树变种
Qin Shi Huang's National Road System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/3 ...
- HDU4081 Qin Shi Huang's National Road System —— 次小生成树变形
题目链接:https://vjudge.net/problem/HDU-4081 Qin Shi Huang's National Road System Time Limit: 2000/1000 ...
- HDU 4081 Qin Shi Huang's National Road System [次小生成树]
题意: 秦始皇要建路,一共有n个城市,建n-1条路连接. 给了n个城市的坐标和每个城市的人数. 然后建n-2条正常路和n-1条魔法路,最后求A/B的最大值. A代表所建的魔法路的连接的城市的市民的人数 ...
- hdu4081 Qin Shi Huang's National Road System 次小生成树
先发发牢骚:图论500题上说这题是最小生成树+DFS,网上搜题解也有人这么做.但是其实就是次小生成树.次小生成树完全当模版题.其中有一个小细节没注意,导致我几个小时一直在找错.有了模版要会用模版,然后 ...
- UVALive-5713 Qin Shi Huang's National Road System (次小生成树)
题目大意:有n个城市,要修一些路使得任意两个城市都能连通.但是有人答应可以不计成本的帮你修一条路,为了使成本最低,你要慎重选择修哪一条路.假设其余的道路长度为B,那条别人帮忙修的道路两端城市中的总人口 ...
- hdu 4081 Qin Shi Huang's National Road System (次小生成树)
Qin Shi Huang's National Road System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/3 ...
- UValive 5713 Qin Shi Huang's National Road System
Qin Shi Huang's National Road System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/3 ...
- Qin Shi Huang's National Road System HDU - 4081(树形dp+最小生成树)
Qin Shi Huang's National Road System HDU - 4081 感觉这道题和hdu4756很像... 求最小生成树里面删去一边E1 再加一边E2 求该边两顶点权值和除以 ...
随机推荐
- 《大话设计模式》ruby版代码:建造者模式
需求: 画一个小人,有头,有身体,两手两脚即可. 初始代码: # -*- encoding: utf-8 -*- #小人一 puts '这是第一个小人' puts '小人一:头' puts '小人一: ...
- 大喜python版opencv3发布,demo脚本抢鲜版发布
大喜,python版opencv3发布 zwPython3的升级也可以启动了,一直在等这个,zwPython会直接升级到版本3:zwPython3 zwPython3采用64位python3,支持op ...
- EditPlus 4.3.2487 中文版已经发布(11月12日更新)
新的版本修复了粘贴多重选择文本的问题,以及增加了横向扩展列选模式选择范围的快捷键(Ctrl+Alt+→/←).
- CF337C - Quiz
/*题目大意,给出n道题,假设答对了m道题,求最小的分数,有一个规则,就是连续答对num==k道题那么分数就翻倍,然后num清零,从新开始计数,到大连续k道的时候 要先加上这道题的分数1,再乘以2, ...
- Linux学习笔记之Centos7设置Linux静态IP
***如下资料源自互联网*** 这里以CentOS 7系列为例设置静态IP,原来RedHat系列的Linux发行版可以通过setup工具方便的设置静态IP,但是在版本7之后setup工具的功能就逐渐减 ...
- Django快速搭建博客系统
Django快速搭建博客系统 一.开发环境 Windows 7(64bit) python 3.6 https://www.python.org/ Django 2.0 https://www. ...
- Linux内核分析第一周-通过分析汇编代码理解计算机是如何工作的
首先,我们先写一个简单的C语言程序,如下: int g(int x) { return x +3; } int f(int x) { return g(x); } int main(void) { r ...
- CSS3动画库——animate.css
初见animate.css的时候,感觉很棒,基本上很多常用的CSS3动画效果都帮我们写好了,所以想要哪一种效果直接就可以拿过来用,甚是方便: 效果展示官网:http://daneden.github. ...
- openwrt生成的交叉编译器在哪里
答:在staging_dir目录下,示例如下: 编译一个arm64架构所生成的编译器在staging_dir/toolchain-aarch64_generic_gcc-7.4.0_musl/bin/ ...
- 反射调用发生错误信息 LoadNeither
错误信息: Service cannot be started. System.Reflection.TargetInvocationException: Exception has been thr ...