当前位置:网站首页>Truck History
Truck History
2022-07-06 16:02:00 【It's Xiao Zhang, ZSY】
Truck History
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. The same question , I'm going to vomit when I make the shortest spanning tree recently
The question : give n A length of 7 String , Each string represents a car , Defining the distance between cars is the number of different letters between two strings , The minimum distance of different cars required by the topic , That is, what we need is the minimum spanning tree .
prim Algorithm
Replaced by a string , That's it ,mmp
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
#define INF 0x3f3f3f3f
int n,mp[2001][2001],dis[2001],f;
bool book[2001];
char c[2001][2001];
void prim()
{
memset(book,0,sizeof(book));
for(int i=1;i<=n;i++)
dis[i]=mp[1][i];
book[1]=1;
int ans=0;
for(int i=1;i<n;i++)
{
int minn=INF;
for(int j=1;j<=n;j++)
{
if(book[j]==0&&dis[j]<minn)
{
f=j;
minn=dis[j];
}
}
if(minn==INF)
break;
book[f]=1;
ans+=dis[f];
for(int j=1;j<=n;j++)
{
if(book[j]==0&&dis[j]>mp[f][j])
dis[j]=mp[f][j];
}
}
printf("The highest possible quality is 1/%d.\n",ans);
}
int main()
{
while(~scanf("%d",&n)&&n)
{
for(int i=1;i<=n;i++)
scanf("%s",c[i]);
for(int i=1;i<=n;i++)
{
for(int j=i+1;j<=n;j++)
{
int sum=0;
for(int k=0;k<7;k++)
{
if(c[i][k]!=c[j][k])
sum++;
}
mp[i][j]=mp[j][i]=sum;
}
}
prim();
}
return 0;
}
边栏推荐
- Research Report on shell heater industry - market status analysis and development prospect forecast
- 【练习-11】4 Values whose Sum is 0(和为0的4个值)
- 区间和------离散化
- 信息安全-威胁检测引擎-常见规则引擎底座性能比较
- Cost accounting [19]
- C语言学习笔记
- Cost accounting [13]
- Penetration test (2) -- penetration test system, target, GoogleHacking, Kali tool
- Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
- Opencv learning log 12 binarization of Otsu method
猜你喜欢

TCP的三次握手与四次挥手

动态规划前路径问题优化方式

C语言必背代码大全

Analyse du format protobuf du rideau en temps réel et du rideau historique de la station B
![[exercise-7] crossover answers](/img/66/3dcba2e70a4cd899fbd78ce4d5bea2.png)
[exercise-7] crossover answers

【高老师软件需求分析】20级云班课习题答案合集

Penetration test (7) -- vulnerability scanning tool Nessus

信息安全-威胁检测引擎-常见规则引擎底座性能比较

滲透測試 ( 1 ) --- 必備 工具、導航

程序员的你,有哪些炫技的代码写法?
随机推荐
Cost accounting [21]
Opencv learning log 31 -- background difference
【高老师软件需求分析】20级云班课习题答案合集
渗透测试 ( 4 ) --- Meterpreter 命令详解
Research Report of cylindrical grinder industry - market status analysis and development prospect forecast
B - 代码派对(女生赛)
MySQL授予用户指定内容的操作权限
动态规划前路径问题优化方式
MySQL grants the user the operation permission of the specified content
程序员的你,有哪些炫技的代码写法?
China's earthwork equipment market trend report, technical dynamic innovation and market forecast
[exercise -10] unread messages
Research Report of peripheral venous catheter (pivc) industry - market status analysis and development prospect prediction
[exercise-4] (UVA 11988) broken keyboard = = (linked list)
JS调用摄像头
信息安全-史诗级漏洞Log4j的漏洞机理和防范措施
Nodejs crawler
China earth moving machinery market trend report, technical dynamic innovation and market forecast
1010 things that college students majoring in it must do before graduation
渗透测试 ( 1 ) --- 必备 工具、导航