百练 1789: Truck History

来源:互联网 发布:java map 修改value值 编辑:程序博客网 时间:2024/06/04 18:24

百练 1789: Truck History

原题OJ链接:http://bailian.openjudge.cn/practice/1789/

描述

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
(to,td)d(to,td)
where the sum goes over all pairs of types in the derivation plan such that to is the original type and td the type derived from it and d(to,td) 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.

输入

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.

输出

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.

样例输入

4aaaaaaabaaaaaaabaaaaaaabaaaa0

样例输出

The highest possible quality is 1/3.

解题思路

最小生成树,把每一个truck type code 看成一个节点(aaaaaaa为节点0,baaaaaa为节点1,abaaaaa为节点2,aabaaaa为节点3)。每两个truck type code之间的距离即为相同位置处字母不同的个数,aaaaaaa和baaaaaa之间的距离为1,baaaaaa和abaaaaa之间的距离为2,第一位和第二位不一样。题目中要求距离之和的最小值,转化为求解一棵最小生成树。

源代码

#include<iostream>#include<cstring> #include<algorithm>#define INF 999999999#define MAX_N 2100using namespace std;int cost[MAX_N][MAX_N];int mincost[MAX_N];bool used[MAX_N];int V;//节点数string types[MAX_N];//truck type codeint prim(){    for(int i=0;i<V;i++){        mincost[i]=INF;        used[i]=false;    }    mincost[0]=0;    int res=0;    while(true){        int v=-1;        for(int u=0;u<V;u++){            if(!used[u] && (v==-1 || mincost[u]<mincost[v]))                v=u;        }        if(v==-1) break;        used[v]=true;        res += mincost[v];        for(int u=0;u<V;u++){            mincost[u]=min(mincost[u],cost[v][u]);        }          }    return res;}int main(){    while(cin>>V && V!=0){        for(int i=0;i<V;i++){            for(int j=0;j<V;j++){                cost[i][j]=INF;            }        }        for(int i=0;i<V;i++){            cin>>types[i];        }        for(int i=0;i<V;i++){            for(int j=i;j<V;j++){                int count=0;                for(int n=0;n<7;n++){                    if(types[i][n]!=types[j][n]){                        count++;                    }                }                cost[i][j]=count;                cost[j][i]=count;            }        }        int Q=prim();        cout<<"The highest possible quality is 1/"<<Q<<"."<<endl;    }    return 0;}