首页 > 学院 > 开发设计 > 正文

poj 1789 Truck History(prim)

2019-11-06 07:35:52
字体:
来源:转载
供稿:网友

题目链接:http://poj.org/PRoblem?id=1789

Truck History
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 26876 Accepted: 10442

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

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

4aaaaaaabaaaaaaabaaaaaaabaaaa0

Sample Output

The highest possible quality is 1/3.

Source

CTU Open 2003

[Submit]   [Go Back]   [Status]   [Discuss]

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie DiAny problem, Please Contact Ad

题意:每个字符串不相同字母的个数就是两个串的距离,求最小生成树

解析:用prim算法求

代码:

#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>#include<queue>#include<cmath>#include<map>#include<vector>#include<stack>#define N 2009using namespace std;const int INF = 0x3f3f3f3f;int mp[N][N], used[N], n;char s[N][8];int fun(char *a, char *b){    int ans = 0;    for(int i = 0; i < 7; i++)        if(a[i] != b[i]) ans++;    return ans;}int prim(){    memset(used, 0, sizeof(used));    int d[N], ans;    memset(d, 0x3f, sizeof(d));    d[0] = ans = 0;    for(int i = 0; i < n; i++)    {        int u = -1;        for(int j = 0; j < n; j++)            if(!used[j] && (u == -1 || d[u] > d[j])) u = j;        if(u == -1) break;        used[u] = 1;        ans += d[u];        for(int j = 0; j < n; j++)        {            if(!used[j] && d[j] > mp[u][j]) d[j] = mp[u][j];        }    }    return ans;}int main(){    while(scanf("%d", &n), n)    {        for(int i = 0; i < n; i++) scanf("%s", s[i]);        for(int i = 0; i < n; i++)        {            for(int j = i + 1; j < n; j++)            {                mp[i][j] = mp[j][i] = fun(s[i], s[j]);            }        }        printf("The highest possible quality is 1/%d./n", prim());    }    return 0;}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表