LINK1

LINK2


题目大意

给你平面上的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】的更多相关文章

  1. 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 ...

  2. 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 ...

  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 ...

  4. HDU 4081 Qin Shi Huang's National Road System [次小生成树]

    题意: 秦始皇要建路,一共有n个城市,建n-1条路连接. 给了n个城市的坐标和每个城市的人数. 然后建n-2条正常路和n-1条魔法路,最后求A/B的最大值. A代表所建的魔法路的连接的城市的市民的人数 ...

  5. hdu4081 Qin Shi Huang's National Road System 次小生成树

    先发发牢骚:图论500题上说这题是最小生成树+DFS,网上搜题解也有人这么做.但是其实就是次小生成树.次小生成树完全当模版题.其中有一个小细节没注意,导致我几个小时一直在找错.有了模版要会用模版,然后 ...

  6. UVALive-5713 Qin Shi Huang's National Road System (次小生成树)

    题目大意:有n个城市,要修一些路使得任意两个城市都能连通.但是有人答应可以不计成本的帮你修一条路,为了使成本最低,你要慎重选择修哪一条路.假设其余的道路长度为B,那条别人帮忙修的道路两端城市中的总人口 ...

  7. 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 ...

  8. 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 ...

  9. Qin Shi Huang's National Road System HDU - 4081(树形dp+最小生成树)

    Qin Shi Huang's National Road System HDU - 4081 感觉这道题和hdu4756很像... 求最小生成树里面删去一边E1 再加一边E2 求该边两顶点权值和除以 ...

随机推荐

  1. centos远程访问mssql数据库

    http://blog.path8.net/archives/5921.html http://www.jaggerwang.net/2013/03/18/centos%E4%B8%8B%E5%AE% ...

  2. HttpClient4.x 使用cookie保持会话

    HttpClient4.x可以自带维持会话功能,只要使用同一个HttpClient且未关闭连接,则可以使用相同会话来访问其他要求登录验证的服务(见TestLogin()方法中的“执行get请求”部分) ...

  3. Linux Makefile

    动态库: gcc getmaxlen.c –fPIC –shared –o libtest.so ldd -r  libtest.so   静态库: ar crv libfirst.a testlib ...

  4. IIS应用程序池自动停止,报503错误解决方法

    前两天遇见一个问题,部署网站之后,浏览时总是报503,找了半天才发现是用户权限问题,现在记录一下,方便以后遇到的大伙快速解决问题,以至于不会浪费太多时间 解决方法: 应 用程序-特定 权限设置未将 C ...

  5. SNMP Introduction

    Basic command of SNMP: GET: The GET operation is a request sent by the manager to the managed device ...

  6. Windows10下用Anaconda3安装TensorFlow教程【转】

    本文转载自:https://www.cnblogs.com/HongjianChen/p/8385547.html 1. 安装好Anaconda3版本 (1) 注:可以发现最新版本是Anaconda5 ...

  7. git clone时提示(gnome-ssh-askpass:29288): Gtk-WARNING **: cannot open display:

    一.背景 在服务器上克隆源码 二.解决 unset SSH_ASKPSS

  8. 我的第一个Windows服务

    代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; ...

  9. SDN前瞻 传统网络架构的危机:危机“四”起

    本文基于SDN导论的视频而成:SDN导论 在网络发展速度如此之快的今天,传统网络的架构充满了危机,主要有这四个问题(3+1). 1)传统网络的部署和管理 非常困难 2)分布式网络架构凸显瓶颈 3)流量 ...

  10. 51Nod 1509 加长棒(隔板法)

    http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1509 思路: 直接去解可行的方法有点麻烦,所以应该用总的方法去减去不可行 ...