训练指南 UVALive - 5713(最小生成树 + 次小生成树)
layout:     post
title:      训练指南 UVALive - 5713(最小生成树 + 次小生成树)
author:     "luowentaoaa"
catalog:  true
mathjax: true
tags:
- 最小生成树
- 图论
- 训练指南
Qin Shi Huang's National Road System
题意
有n个城市,要修一些路使得任意两个城市都能连通。但是有人答应可以不计成本的帮你修一条路,为了使成本最低,你要慎重选择修哪一条路。假设其余的道路长度为B,那条别人帮忙修的道路两端城市中的总人口为B,要找一个使A/B最大的方案。
题意
先求最小生成树,处理出MST中任意两点之间的最长边。因为别人只答应给修一条路,所以枚举这条路,用这条路替换下一条MST中最长的边(在加入这条路后构成的环中),比较求得A/B的最大值。实际上是把求次小生成树的一些后续操作改改。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=998244353;
const int maxn=1e3+50;
const ll inf=0x3f3f3f3f3f3f3f3fLL;
int n,m,x[maxn],y[maxn],p[maxn];
int pa[maxn];
int findset(int x){return pa[x]!=x?pa[x]=findset(pa[x]):x;}
vector<int>G[maxn];
vector<double>C[maxn];
struct Edge{
    int x,y;
    double d;
    bool operator < (const Edge& rhs)const{
        return d<rhs.d;
    }
};
Edge e[maxn*maxn];
double maxcost[maxn][maxn];
vector<int>nodes;
void dfs(int u,int fa,double facost){
    //cout<<"dfs="<<u<<endl;
    for(int i=0;i<nodes.size();i++){
        int x=nodes[i];
        maxcost[u][x]=maxcost[x][u]=max(maxcost[x][fa],facost);
    }
    nodes.push_back(u);
    for(int i=0;i<G[u].size();i++){
        if(G[u][i]==fa)continue;
        dfs(G[u][i],u,C[u][i]);
    }
}
double dis(int i,int j){
    return sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
}
double MST(){
    m=0;
    for(int i=0;i<n;i++)
        for(int j=i+1;j<n;j++)
    e[m++]=(Edge){i,j,dis(i,j)};
    sort(e,e+m);
    for(int i=0;i<n;i++){pa[i]=i;G[i].clear();C[i].clear();}
    int cnt=0;
    double ans=0;
    for(int i=0;i<m;i++){
        int x=e[i].x,y=e[i].y,u=findset(x),v=findset(y);
        double d=e[i].d;
        if(u==v)continue;
        pa[u]=v;
        G[x].push_back(y);G[y].push_back(x);
        C[x].push_back(d);C[y].push_back(d);
        ans+=d;
        if(++cnt==n-1)break;
    }
    return ans;
}
int main()
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    int t;
    cin>>t;
    while(t--){
        cin>>n;
        for(int i=0;i<n;i++)cin>>x[i]>>y[i]>>p[i];
        double tot=MST();
        memset(maxcost,0,sizeof(maxcost));
        nodes.clear();
        dfs(0,-1,0);
        double ans=-1;
        for(int i=0;i<n;i++)
        for(int j=i+1;j<n;j++){
            ans=max(ans,(p[i]+p[j])/(tot-maxcost[i][j]));
        }
        cout<<fixed<<setprecision(2)<<ans<<endl;
    }
    return 0;
}
训练指南 UVALive - 5713(最小生成树 + 次小生成树)的更多相关文章
- 训练指南 UVALive - 3126(DAG最小路径覆盖)
		layout: post title: 训练指南 UVALive - 3126(DAG最小路径覆盖) author: "luowentaoaa" catalog: true mat ... 
- 训练指南 UVALive - 3415(最大点独立集)
		layout: post title: 训练指南 UVALive - 3415(最大点独立集) author: "luowentaoaa" catalog: true mathja ... 
- 训练指南 UVALive - 3989(稳定婚姻问题)
		ayout: post title: 训练指南 UVALive - 3989(稳定婚姻问题) author: "luowentaoaa" catalog: true mathjax ... 
- 训练指南 UVALive - 4043(二分图匹配 + KM算法)
		layout: post title: 训练指南 UVALive - 4043(二分图匹配 + KM算法) author: "luowentaoaa" catalog: true ... 
- 训练指南 UVALive - 4080(最短路Dijkstra + 边修改 + 最短路树)
		layout: post title: 训练指南 UVALive - 4080(最短路Dijkstra + 边修改 + 最短路树) author: "luowentaoaa" ca ... 
- 训练指南 UVALive - 3713 (2-SAT)
		layout: post title: 训练指南 UVALive - 3713 (2-SAT) author: "luowentaoaa" catalog: true mathja ... 
- 训练指南 UVALive - 4287 (强连通分量+缩点)
		layout: post title: 训练指南 UVALive - 4287 (强连通分量+缩点) author: "luowentaoaa" catalog: true mat ... 
- 训练指南 UVALive - 5135 (双连通分量)
		layout: post title: 训练指南 UVALive - 5135 (双连通分量) author: "luowentaoaa" catalog: true mathja ... 
- 训练指南 UVALive - 3523 (双联通分量 + 二分图染色)
		layout: post title: 训练指南 UVALive - 3523 (双联通分量 + 二分图染色) author: "luowentaoaa" catalog: tru ... 
随机推荐
- 【题解】[国家集训队]Crash的数字表格 / JZPTAB
			求解\(\sum_{i = 1}^{n}\sum_{j = 1}^{m}lcm\left ( i,j \right )\). 有\(lcm\left ( i,j \right )=\frac{ij}{ ... 
- BZOJ day1
			十题击破 1051108811921432195119682242245624632761 
- 【bzoj3224】Tyvj 1728 普通平衡树   01Trie姿势+平衡树的四种姿势 :splay,旋转Treap,非旋转Treap,替罪羊树
			直接上代码 正所谓 人傻自带大常数 平衡树的几种姿势: AVL Red&Black_Tree 码量爆炸,不常用:SBT 出于各种原因,不常用. 常用: Treap 旋转 基于旋转操作和随机数 ... 
- NEYC 2017 自动取款机 atm  Day6 T1
			自动取款机 [问题描述] 小 ... 
- [8.16模拟赛] 玩具 (dp/字符串)
			题目描述 儿时的玩具总是使我们留恋,当小皮还是个孩子的时候,对玩具更是情有独钟.小皮是一个兴趣爱好相当广泛且不专一的人,这这让老皮非常地烦恼.也就是说,小皮在不同时刻所想玩的玩具总是会不同,而有心的老 ... 
- Codeforces Round #520 (Div. 2) C. Banh-mi
			C. Banh-mi time limit per test:1 second memory limit per test:256 megabytes 题目链接:https://codeforc.es ... 
- 图论:Stoer-Wagner算法
			利用Stoer-Wagner算法求无向图最小割 直接给出算法描述和过程实现: 算法步骤: . 设最小割cut=INF, 任选一个点s到集合A中, 定义W(A, p)为A中的所有点到A外一点p的权总和. ... 
- c:forEach 如何输出序号
			关键在于<c:forEach>的varStatus属性,具体代码如下: <table width="500" border="0" cells ... 
- 160多条Windows 7 “运行”命令
			160多条Windows 7 “运行”命令: 删除或更改应用程序 = control appwiz.cpl 添加设备 = devicepairingwizard 蓝牙文件传输 = fsquirt ... 
- 如何完全禁用或卸载Windows 10中的OneDrive
			该功能占用很大的内存与CPU 详见http://os.51cto.com/art/201508/489371.htm 
