• POJ 1789Truck History(pirme)


    Truck History
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 22648   Accepted: 8781

    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

    4
    aaaaaaa
    baaaaaa
    abaaaaa
    aabaaaa
    0
    

    Sample Output

    The highest possible quality is 1/3.

    题意:每输入一个字符串代表一个节点,而节点之间的距离就是不同字符串字对应位置不同的字符个数,然后求最小生成树
    不同题意的时候完全不知道怎么做,当知道是距离是什么和是求最小生成树的时候就成了水题
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 
     6 using namespace std;
     7 const int INF = 100000000;
     8 int n;
     9 char str[2000 + 10][10];
    10 int edge[2000 + 10][2000 + 10],dist[2000 + 10],vis[2000 + 10];
    11 int weight(char a[],char b[])
    12 {
    13     int ans = 0;
    14     for(int i = 0; i < 7; i++)
    15         if(a[i] != b[i])
    16         ans ++;
    17     return ans;
    18 }
    19 void prime()
    20 {
    21     memset(vis,0,sizeof(vis));
    22     for(int i = 2; i <= n; i++)
    23     {
    24         dist[i] = edge[1][i];
    25     }
    26     vis[1] = 1;
    27     dist[1] = 0;
    28     int sum = 0;
    29     for(int i = 1; i < n; i++)
    30     {
    31         int minn = INF,pos;
    32         for(int j = 1; j <= n; j++)
    33         {
    34             if(vis[j] == 0 && dist[j] < minn)
    35             {
    36                 minn = dist[j];
    37                 pos = j;
    38             }
    39         }
    40         sum += minn;
    41         vis[pos] = 1;
    42         for(int j = 1; j <= n; j++)
    43         {
    44             if(dist[j] > edge[pos][j])
    45                 dist[j] = edge[pos][j];
    46         }
    47     }
    48     printf("The highest possible quality is 1/%d.
    ",sum);
    49 }
    50 int main()
    51 {
    52     while(scanf("%d", &n) != EOF)
    53     {
    54         if(n == 0)
    55             break;
    56         for(int i = 1; i <= n; i++)
    57         {
    58             scanf("%s", str[i]);
    59         }
    60         for(int i = 1; i < n; i++)
    61         {
    62             for(int j = i + 1; j <= n; j++)
    63             {
    64                 edge[i][j] = edge[j][i] = weight(str[i],str[j]);
    65             }
    66         }
    67         prime();
    68     }
    69     return 0;
    70 }
    View Code
  • 相关阅读:
    [算法]全排列类问题
    windows下python安装Numpy和Scipy模块
    EMC校招笔试题目
    word2012写论文之参考文献和图片
    我的MBTI性格测试
    单例模式三境界
    css3滤镜Filter使用
    利用nginx 虚拟主机、请求转发实现不同端口web访问
    使用gitbook 发布一个教程文档网站
    linux 下CentOS 下 npm命令安装gitbook失败的问题
  • 原文地址:https://www.cnblogs.com/zhaopAC/p/4985423.html
Copyright © 2020-2023  润新知