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

    Truck History
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 20850   Accepted: 8065

    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.
    

    Source

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <string>
     4 #include <queue>
     5 #include <stack>
     6 #include <iostream>
     7 using namespace std;
     8 string s[2005];
     9 int map[2005][2005];
    10 int dis[2005];
    11 int getdiff(string s1,string s2){
    12     int i,num=0;
    13     for(i=0;i<7;i++){
    14         if(s1[i]!=s2[i]){
    15             num++;
    16         }
    17     }
    18     return num;
    19 }
    20 int main(){
    21     //freopen("D:\INPUT.txt","r",stdin);
    22     int n;
    23     while(scanf("%d",&n)!=EOF){
    24         if(!n){
    25             break;
    26         }
    27         int i,j;
    28         for(i=0;i<n;i++){
    29             cin>>s[i];
    30         }
    31         memset(dis,8,sizeof(dis));
    32         for(i=0;i<n;i++){
    33             for(j=i;j<n;j++){
    34                 map[j][i]=map[i][j]=getdiff(s[i],s[j]);
    35             }
    36             dis[i]=map[0][i];
    37         }
    38         int mink,min,sum=0;
    39         for(i=0;i<n-1;i++){
    40             min=8;
    41             for(j=0;j<n;j++){
    42                 if(dis[j]&&min>dis[j]){
    43                     min=dis[j];
    44                     mink=j;
    45                 }
    46             }
    47             sum+=dis[mink];
    48             for(j=0;j<n;j++){
    49                 if(dis[j]>map[mink][j]){
    50                     dis[j]=map[mink][j];
    51                 }
    52             }
    53             dis[mink]=0;
    54     }
    55     cout<<"The highest possible quality is 1/"<<sum<<"."<<endl;
    56     }
    57     return 0;
    58 }
  • 相关阅读:
    Kubernetes(十一) 部署doshboard
    kubernetes(一)kubeadm安装
    kubernetes安装-二进制
    使用Jmeter+Maven+Jenkins实现接口自动化测试
    使用Jmeter在linux环境实现分布式负载
    Jmeter连接Mysql和Oracle数据库
    Jmeter如何实现参数化用户,并且管理Cookie
    开启MYSQL慢查询日志,监控有效率问题的SQL
    使用jmeter+ant+jenkins实现接口自动化测试
    使用Jmeter对SHA1加密接口进行性能测试
  • 原文地址:https://www.cnblogs.com/Deribs4/p/4644243.html
Copyright © 2011-2022 走看看