zoukankan      html  css  js  c++  java
  • POJ 1789 Truck History (最小生成树)

    Truck History

    题目链接:

    http://acm.hust.edu.cn/vjudge/contest/124434#problem/E

    Description

    Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for bricks. The company has its own code describing each type of a truck. The code is simply a string of exactly seven lowercase letters (each letter on each position has a very special meaning but that is unimportant for this task). At the beginning of company's history, just a single truck type was used but later other types were derived from it, then from the new types another types were derived, and so on.

    Today, ACM is rich enough to pay historians to study its history. One thing historians tried to find out is so called derivation plan -- i.e. how the truck types were derived. They defined the distance of truck types as the number of positions with different letters in truck type codes. They also assumed that each truck type was derived from exactly one other truck type (except for the first truck type which was not derived from any other type). The quality of a derivation plan was then defined as
    1/Σ(to,td)d(to,td)

    where the sum goes over all pairs of types in the derivation plan such that t o is the original type and t d the type derived from it and d(t o,t d) is the distance of the types.
    Since historians failed, you are to write a program to help them. Given the codes of truck types, your program should find the highest possible quality of a derivation plan.

    Input

    The input consists of several test cases. Each test case begins with a line containing the number of truck types, N, 2 <= N <= 2 000. Each of the following N lines of input contains one truck type code (a string of seven lowercase letters). You may assume that the codes uniquely describe the trucks, i.e., no two of these N lines are the same. The input is terminated with zero at the place of number of truck types.

    Output

    For each test case, your program should output the text "The highest possible quality is 1/Q.", where 1/Q is the quality of the best derivation plan.

    Sample Input

    4
    aaaaaaa
    baaaaaa
    abaaaaa
    aabaaaa
    0

    Sample Output

    The highest possible quality is 1/3.


    ##题意: 求最小花费使得所有字符串联通. 字符串之间的距离定义为不同字符的个数.
    ##题解: 裸的最小生成树.
    ##代码: ``` cpp #include #include #include #include #include #include #include #include #include #define LL long long #define eps 1e-8 #define maxn 2100 #define mod 100000007 #define inf 0x3f3f3f3f #define IN freopen("in.txt","r",stdin); using namespace std;

    struct node{
    int left,right,cost;
    }road[maxn*maxn];

    int cmp(node x,node y) {return x.cost<y.cost;}
    int p[maxn],m,n;
    int find(int x) {return p[x]=(p[x]==x? x:find(p[x]));}
    int kruskal()
    {
    int ans=0;
    for(int i=1;i<=n;i++) p[i]=i;
    sort(road+1,road+m+1,cmp);
    for(int i=1;i<=m;i++)
    {
    int x=find(road[i].left);
    int y=find(road[i].right);
    if(x!=y)
    {
    ans+=road[i].cost;
    //printf("%d ", road[i].cost);
    p[x]=y;
    }
    }
    return ans;
    }

    char str[maxn][10];

    int get_dis(int a, int b) {
    int ans = 0;
    for(int i=0; i<7; i++) {
    if(str[a][i] != str[b][i]) ans++;
    }
    return ans;
    }

    int main(int argc, char const *argv[])
    {
    //IN;

    while(scanf("%d", &n) != EOF && n)
    {
        m = 0;
        memset(road,0,sizeof(road));
    
        for(int i=1; i<=n; i++) {
            scanf("%s", str[i]);
        }
    
        for(int i=1; i<=n; i++) {
            for(int j=i+1; j<=n; j++) {
                road[++m].left = i;
                road[m].right = j;
                road[m].cost = get_dis(i,j);
            }
        }
    
        int ans=kruskal();
    
        printf("The highest possible quality is 1/%d.
    ", ans);
    }
    
    return 0;
    

    }

  • 相关阅读:
    Deepin 安装成功后开机进入系统黑屏
    Widows 关闭 Defender的方法
    yapi
    spring boot集成minio,最新版
    Minio第一课:走进 Minio
    Docker与IPtables
    解决:required a single bean, but 2 were found:
    Python之Beautiful Soup 4使用实例
    mysql -5.7.31 修改root密码
    mybatis/tk mybatis下实体字段是关键字/保留字,执行报错
  • 原文地址:https://www.cnblogs.com/Sunshine-tcf/p/5719844.html
Copyright © 2011-2022 走看看