1789 Truck History【最小生成树】

Truck History
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 21660   Accepted: 8419
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.



题意:
每个卡车的车牌号都由七个字母表示,而且唯一,两个车牌号对应位置有多少个字符不一样,那么这两个车牌号的差别度为几,现在给出若干个车牌号,让你把他们连接在一起,可以直接连,或者间接连接,使得他们中直接相连的车牌号之间的差异度的和最小,求出这个最小值,Q,然后按要求输出.......

分析:
这个题,题意不太好理解,但是如果理解了题意之后,并不算复杂,可以很容易发现这是个图论里的最小生成树的模版题目,只是需要加条件转化一下为常见的模板题目,这道题的边数比较多,适合用prim算法,不过我这里使用的克鲁斯克尔算法,因为这个做法的人比较少,大概讲一下自己的思路,

   首先定义一个结构体来保存顶点和边,然后是并查集的初始化,查找,合并函数,以及排序函数,另外一个比较函数在遍历的时候求出每两个不同的车牌号之间的差异度(权值),下面就是一般的思路了:按边的权值从小到大排序,遍历所有边,如果没有连通,就加入到同一个集合,并且统计总权值,否则不统计,一直到n-1条边(n个元素)连入同一个集合,最小生成树就生成了,用克鲁斯卡尔算法算法注意数组的范围,给出的顶点最大限度是2000以内,那就要考虑2000*1999/2,大约200万条边的范围了,算法不错,注意好按要求输出,这道题就基本上没问题了,具体看代码注释。


#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
char trk[2005][15];
int per[2005],cnt,kase,n;
struct scs//结构体保存顶点和边的权值
{
	int a,b;
	int len;
}x[2500005];
void init()//初始化函数
{
	for(int i=1;i<=n;++i)
	{
		per[i]=i;
	}
}
int find(int x)//查找根节点
{
	int r=x;
	while(r!=per[r])
	{
		r=per[r];
	}
	int i=x,j;
	while(i!=r)
	{
		j=per[i];per[i]=r;i=j;
	}
	return r;
}
void join(int x,int y)//合并函数
{
	int fx=find(x),fy=find(y);
	if(fx!=fy)
	{
		per[fy]=fx;
		++cnt;kase=1;//合并成功,边数增加
	}
}
int com(char a[],char b[])//计算差异度(权值)
{
	int i,c=0;
	for(i=0;i<7;++i)
	{
		if(a[i]!=b[i])
		{
			++c;
		}
	}
	return c;
}
bool cmp(scs a,scs b)
{
	return a.len<b.len;
}
int main()
{
	int i,j,c;
	while(scanf("%d",&n),n)
	{
		init();c=cnt=0;
		getchar();
		for(i=0;i<n;++i)
		{
			scanf("%s",trk[i]);//输入保存每一个车牌号
		}
		for(i=0;i<n-1;++i)
		{
			for(j=i+1;j<n;++j)
			{
				if(i!=j)
				{
					x[c].a=i+1;x[c].b=j+1;//保存顶点的编号
					x[c].len=com(trk[i],trk[j]);//计算权值
					++c;
				}
			}
		}
		sort(x,x+c,cmp);int sum=0;
		for(i=0;i<c&&cnt<n-1;++i)
		{
			kase=0;
			join(x[i].a,x[i].b);
			if(kase)//加入集合成功,就累加总权值
			{
				sum+=x[i].len;
			}
		}
		printf("The highest possible quality is 1/%d.\n",sum);//注意按要求输出,
	}
	return 0;
}







版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-12 08:37:40

1789 Truck History【最小生成树】的相关文章

poj 1789 Truck History 最小生成树 prim

Truck History Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 19122   Accepted: 7366 Description Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for brick

poj 1789 Truck 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 ex

POJ #1789 Truck History 最小生成树(MST) prim 稠密图 链式向前星

Description 题目:链接 这道题的数据集网上比较少,提供一组自己手写的数据: INPUT: 3 aaaaaaa baaaaaa abaaaaa OUTPUT: The highest possible quality is 1/2. 思路 题意比较不好理解,简而言之就是有 n 个字符串,设两个字符串之间的差异为 dis,dis 由两个字符串对应位置上不同字母的数量决定.比如串A"aaaaaaa" .串B"baaaaaa" 和串C"abaaaaa&

poj 1789 Truck History 解题报告

题目链接:http://poj.org/problem?id=1789 题目意思:给出 N 行,每行7个字符你,统计所有的 行 与 行 之间的差值(就是相同位置下字母不相同),一个位置不相同就为1,依次累加.问最终的差值最少是多少. 额.....题意我是没看懂啦= =......看懂之后,就转化为最小生成树来做了.这是一个完全图,即每条边与除它之外的所有边都连通.边与边的权值是通过这个差值来算出来的. 1 #include <iostream> 2 #include <cstdio>

ZOJ 2158 &amp;&amp; POJ 1789 Truck History (经典MST)

链接:http://poj.org/problem?id=1789 或  http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1158 Description Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for br

poj 1789 Truck History(kruskal算法)

题目链接:http://poj.org/problem?id=1789 思路:把每一行看成一个一个点,每两行之间不懂得字符个数就看做是权值.然后用kruskal算法计算出最小生成树 我写了两个代码一个是用优先队列写的,但是超时啦,不知道为什么,希望有人可以解答.后面用的数组sort排序然后才AC. code: 数组sort排序AC代码: #include<cstdio> #include<queue> #include<algorithm> #include<io

POJ 1789 -- Truck History(Prim)

 POJ 1789 -- Truck History Prim求分母的最小.即求最小生成树 1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 const int maxn = 2000 + 10; 6 const int INF = 1000000; 7 int n;//有几个卡车 8 char str[maxn][10]; 9 int d[ma

Kuskal/Prim POJ 1789 Truck History

题目传送门 1 /* 2 题意:给出n个长度为7的字符串,一个字符串到另一个的距离为不同的字符数,问所有连通的最小代价是多少 3 Kuskal/Prim: 先用并查集做,简单好写,然而效率并不高,稠密图应该用Prim.这是最小生成数的裸题,然而题目有点坑爹:( 4 */ 5 #include <cstdio> 6 #include <cstring> 7 #include <string> 8 #include <algorithm> 9 #include

POJ 1789 Truck History (Kruskal 最小生成树)

Truck History Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 19860   Accepted: 7673 Description Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for brick