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/32768 K (Java/Others)
Total Submission(s): 2168    Accepted Submission(s): 789


Problem Description
During the Warring States Period of ancient China(476 BC to 221 BC), there were seven kingdoms in China ---- they were Qi, Chu, Yan, Han, Zhao, Wei and Qin. Ying Zheng was the king of the kingdom Qin. Through 9 years of wars, he finally conquered all six other kingdoms and became the first emperor of a unified China in 221 BC. That was Qin dynasty ---- the first imperial dynasty of China(not to be confused with the Qing Dynasty, the last dynasty of China). So Ying Zheng named himself "Qin Shi Huang" because "Shi Huang" means "the first emperor" in Chinese.

Qin Shi Huang undertook gigantic projects, including the first version of the Great Wall of China, the now famous city-sized mausoleum guarded by a life-sized Terracotta Army, and a massive national road system. There is a story about the road system:
There were n cities in China and Qin Shi Huang wanted them all be connected by n-1 roads, in order that he could go to every city from the capital city Xianyang.
Although Qin Shi Huang was a tyrant, he wanted the total length of all roads to be minimum,so that the road system may not cost too many people's life. A daoshi (some kind of monk) named Xu Fu told Qin Shi Huang that he could build a road by magic and that magic road would cost no money and no labor. But Xu Fu could only build ONE magic road for Qin Shi Huang. So Qin Shi Huang had to decide where to build the magic road. Qin Shi Huang wanted the total length of all none magic roads to be as small as possible, but Xu Fu wanted the magic road to benefit as many people as possible ---- So Qin Shi Huang decided that the value of A/B (the ratio of A to B) must be the maximum, which A is the total population of the two cites connected by the magic road, and B is the total length of none magic roads.
Would you help Qin Shi Huang?
A city can be considered as a point, and a road can be considered as a line segment connecting two points.
 

Input
The first line contains an integer t meaning that there are t test cases(t <= 10).
For each test case:
The first line is an integer n meaning that there are n cities(2 < n <= 1000).
Then n lines follow. Each line contains three integers X, Y and P ( 0 <= X, Y <= 1000, 0 < P < 100000). (X, Y) is the coordinate of a city and P is the population of that city.
It is guaranteed that each city has a distinct location.
 

Output
For each test case, print a line indicating the above mentioned maximum ratio A/B. The result should be rounded to 2 digits after decimal point.
 

Sample Input
2 4 1 1 20 1 2 30 200 2 80 200 1 100 3 1 1 20 1 2 30 2 2 40
 

Sample Output
65.00 70.00
 

Source
 

Recommend
lcy
 


------------------------------

求出最小树,边权和为minTree。

预处理出最小树上任意两点路径上的最长边maxCost(u,v)

枚举每条边(u,v),ans=max( ( pop(u)+pop(v) ) / ( minTree-maxCost(u,v) ) )

------------------------------

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <cmath>
using namespace std;

const int INF=0x3f3f3f3f;
const int maxn=1111;
const int maxm=1111;
const double eps=1e-12;
const double OO=1e100;

int dcmp(double x,double y){
    if (abs(x-y)<eps) return 0;
    if (x<y) return -1;
    else return 1;
}
struct Road{
    int u,v;
    double w;
    Road(){}
    Road(int u,int v,double w){
        this->u=u;
        this->v=v;
        this->w=w;
    }
    bool operator<(const Road& rhs) const{
        return dcmp(w,rhs.w)<0;
    }
};
struct Point{
    double x,y;
    double pop;
    Point(){}
    Point(double x,double y,double pop){
        this->x=x;
        this->y=y;
        this->pop=pop;
    }
    double disToPot(Point& p){
        return sqrt( (x-p.x)*(x-p.x)+(y-p.y)*(y-p.y) );
    }
};
class DisjointSet{
private:
    int pa[maxn];
    int n;
public:
    void makeSet(int n){
        this->n=n;
        for (int i=0;i<=n;i++) pa[i]=i;
    }
    int findSet(int x){
        if (x!=pa[x]) pa[x]=findSet(pa[x]);
        return pa[x];
    }
    void unionSet(int x,int y){
        x=findSet(x);
        y=findSet(y);
        if (x!=y) pa[x]=y;
    }
}disjointSet;

class Graph{
private:
    struct EdgeNode{
        int to;
        double w;
        int next;
    };
    int head[maxn],edge,n;
    EdgeNode edges[maxm*2];
    double maxCost[maxn][maxn];
    void dfsCost(int s,int u,int pa){
        for (int i=head[u];i!=-1;i=edges[i].next){
            int v=edges[i].to;
            double w=edges[i].w;
            if (v==pa) continue;
            maxCost[s][v]=maxCost[s][u];
            if (maxCost[s][v]<w) maxCost[s][v]=w;
            dfsCost(s,v,u);
        }
    }
    //debug
    void dfsBase(int u,int pa){
        printf("pa( %d ) --> u( %d )
",pa,u);
        for (int i=head[u];i!=-1;i=edges[i].next){
            int v=edges[i].to;
            if (v==pa) continue;
            dfsBase(v,u);
        }
    }
public:
    void init(int n){
        this->n=n;
        memset(head,-1,sizeof(int)*(n+1));
        edge=0;
    }
    void addedge(int u,int v,double w){
        edges[edge].w=w,edges[edge].to=v,edges[edge].next=head[u],head[u]=edge++;
    }
    void findMaxCost(){
        for (int i=0;i<n;i++)
            for (int j=0;j<n;j++)
                maxCost[i][j]=0;
        for (int i=0;i<n;i++){
            dfsCost(i,i,-1);
        }
    }
    double getMaxCost(int x,int y){
        return maxCost[x][y];
    }
    //debug
    void showGraph(){
        cerr<<"Graph:"<<endl;
        dfsBase(0,-1);
        cerr<<"Graph over"<<endl;
    }
    void showMaxCost(){
        cerr<<"MaxCost:"<<endl;
        for (int i=0;i<n;i++){
            for (int j=0;j<n;j++){
                cerr<<getMaxCost(i,j)<<" ";
            }
            cerr<<endl;
        }
        cerr<<"MaxCost over"<<endl;
    }
}tree;

vector<Road>road;
vector<Point>city;

int n;
double minTree;

void initializer(){
    disjointSet.makeSet(n);
    road.clear();
    city.clear();
    minTree=0;
    tree.init(n);
}

void input(){
    for (int i=0;i<n;i++){
        double a,b,w;
        scanf("%lf%lf%lf",&a,&b,&w);
        city.push_back(Point(a,b,w));
    }
    for (int i=0;i<n;i++){
        for (int j=i+1;j<n;j++){
            double d=city[i].disToPot(city[j]);
            road.push_back(Road(i,j,d));
        }
    }
}
void Kruskal(){
    sort(road.begin(),road.end());
    for (vector<Road>::iterator it=road.begin();it!=road.end();it++){
        int u=it->u;
        int v=it->v;
        double w=it->w;
        if (disjointSet.findSet(u)!=disjointSet.findSet(v)){
            minTree+=w;
            disjointSet.unionSet(u,v);
            tree.addedge(u,v,w);
            tree.addedge(v,u,w);
        }
    }
    tree.findMaxCost();
    //debug
    //tree.showGraph();
    //tree.showMaxCost();
}
void solve(){
    double ans=0;
    for (vector<Road>::iterator it=road.begin();it!=road.end();it++){
        int u=it->u;
        int v=it->v;
        double A=city[u].pop+city[v].pop;
        double B=minTree-tree.getMaxCost(u,v);
        double res=A/B;
        if (res>ans) ans=res;
    }
    printf("%0.2f
",ans);
}
int main()
{
    int T;
    scanf("%d",&T);
    while (T--){
        scanf("%d",&n);
        initializer();
        input();
        Kruskal();
        solve();
    }
    return 0;
}





原文地址:https://www.cnblogs.com/cyendra/p/3681573.html