zoukankan      html  css  js  c++  java
  • poj 1789Truck History

    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.

    简单的最小生成树处理~~
    View Code
     1 #include <cstdio>
     2 #include <cstring>
     3 #include <algorithm>
     4 #define N 2100
     5 #define INF 0x7f7f7f7
     6 using namespace std;
     7 char s[N][10];
     8 int map[N][N];
     9 int dis[N],vis[N],n;
    10 int prim()
    11 {
    12     int i,j,sum=0,now;
    13     memset(dis,0x7f,sizeof(dis));
    14     memset(vis,0,sizeof(vis));
    15     for(i=0; i<n; i++)
    16         dis[i]=map[0][i];
    17     vis[0]=1;
    18     for(i=1; i<n; i++)
    19     {
    20         int minn=INF;
    21         for(j=0; j<n; j++)
    22             if(!vis[j]&&dis[j]<minn)
    23             {
    24                 minn=dis[j];
    25                 now=j;
    26             }
    27         sum+=minn;
    28         vis[now]=1;
    29         for(j=0; j<n; j++)
    30             if(!vis[j]&&map[now][j]<dis[j])
    31                 dis[j]=map[now][j];
    32     }
    33     return sum;
    34 }
    35 int main()
    36 {
    37     int i,j,k,cnt;
    38     while(scanf("%d",&n)&&n)
    39     {
    40         memset(map,0,sizeof(map));
    41         for(i=0; i<n; i++)
    42             scanf("%s",s[i]);
    43         for(i=0; i<n; i++)
    44             for(j=i+1; j<n; j++)
    45             {
    46                 cnt=0;
    47                 for(k=0; k<7; k++)
    48                     if(s[i][k]!=s[j][k])
    49                         cnt++;
    50                 map[j][i]=map[i][j]=cnt;
    51             }
    52         printf("The highest possible quality is 1/%d.\n",prim());
    53     }
    54     return 0;
    55 }
  • 相关阅读:
    Dbzoj#3188. [Coci 2011]Upit
    P1903 [国家集训队]数颜色 带修改莫队板子
    P2045 方格取数加强版
    P1402 酒店之王
    P4151 [WC2011]最大XOR和路径
    Orz YYB!
    Atcoder2167 Blackout
    P2939 [USACO09FEB]改造路Revamping Trails
    博弈论简单入门sb总结
    P3592 [POI2015]MYJ
  • 原文地址:https://www.cnblogs.com/wilsonjuxta/p/2997648.html
Copyright © 2011-2022 走看看