poj 1789 Truck History 最小生成树
| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 15235 | Accepted: 5842 |
Description
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 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
Sample Input
4
aaaaaaa
baaaaaa
abaaaaa
aabaaaa
0
Sample Output
The highest possible quality is 1/3.
题目大意:给一些字符串,这些字符串都是由7个字母组成,每个字符串代表一个点,点与点的距离是他们的字母不同的个数,让我们求最短距离和
prime算法邻接矩阵实现的,没用优先级队列,很纯的prim算法,500MS AC代码
#include<stdio.h>
#include<string.h> char strs[2010][10];
int map[2010][2010];
int n;//×ܵãÊý
int getdis(char *str1, char *str2)
{
int i;
int ret = 0;
for(i = 0; str1[i]; i++)
{
if(str1[i] != str2[i])
ret ++;
}
return ret;
}
int prim()
{
bool used[2010] = {0};
int dis[2010];
int ans = 0;
memset(dis, -1, sizeof(dis));
int i;
used[0] = 1;
for(i = 0; i < n; i++)
{
dis[i] = map[0][i];
}
for(i = 1; i < n; i++)
{
int j;
int min = 0x7fffffff, mark;
for(j = 0; j < n; j++)
{
if(dis[j] != -1 && min > dis[j] && !used[j])
{
min = dis[j];
mark = j;
}
}
used[mark] = 1;
ans += min;
for(j = 0; j < n; j++)
{
if(!used[j] && ( dis[j] == -1 || dis[j] > map[mark][j]) )
{
dis[j] = map[mark][j];
}
}
}
return ans;
}
int main()
{
// freopen("in.txt", "r", stdin);
while(scanf("%d", &n), n != 0)
{
memset(map, 0, sizeof(map));
int i;
for(i = 0; i < n; i++)
{
scanf("%s", strs[i]);
int j;
for(j = 0; j < i; j++)
{
int dis = getdis(strs[i], strs[j]);
map[j][i] = dis;
map[i][j] = dis;
}
}
int ans = prim();
printf("The highest possible quality is 1/%d.\n", ans);
}
return 0;
}
poj 1789 Truck History 最小生成树的更多相关文章
- poj 1789 Truck History 最小生成树 prim 难度:0
Truck History Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 19122 Accepted: 7366 De ...
- POJ 1789 -- Truck History(Prim)
POJ 1789 -- Truck History Prim求分母的最小.即求最小生成树 #include<iostream> #include<cstring> #incl ...
- Kuskal/Prim POJ 1789 Truck History
题目传送门 题意:给出n个长度为7的字符串,一个字符串到另一个的距离为不同的字符数,问所有连通的最小代价是多少 分析:Kuskal/Prim: 先用并查集做,简单好写,然而效率并不高,稠密图应该用Pr ...
- poj 1789 Truck History
题目连接 http://poj.org/problem?id=1789 Truck History Description Advanced Cargo Movement, Ltd. uses tru ...
- POJ 1789 Truck History【最小生成树简单应用】
链接: http://poj.org/problem?id=1789 http://acm.hust.edu.cn/vjudge/contest/view.action?cid=22010#probl ...
- POJ 1789 Truck History (最小生成树)
Truck History 题目链接: http://acm.hust.edu.cn/vjudge/contest/124434#problem/E Description Advanced Carg ...
- poj 1789 Truck History【最小生成树prime】
Truck History Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 21518 Accepted: 8367 De ...
- POJ 1789 Truck History (Kruskal)
题目链接:POJ 1789 Description Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks ...
- POJ 1789 Truck History (Kruskal 最小生成树)
题目链接:http://poj.org/problem?id=1789 Advanced Cargo Movement, Ltd. uses trucks of different types. So ...
随机推荐
- 如何通过SecureCRT FTP上传下载文件
通过SecureCRT FTP方式从一台机器下载文件到另一台机器上: [root@TEST144239 ~]# ftp 10.30.1.25 Connected to 10.30.1.25 (10. ...
- Java 开发环境搭建
找到一篇很不錯的Java開發環境搭建的博客, 原文地址為:http://www.cnblogs.com/bribe/p/3377008.html Java 开发环境搭建 一.开发工具获取 1.开发工具 ...
- SSH_框架整合3-删除
一.普通删除 1 完善src中 类: (1)EmployeeDao.java中: //2 删除 public void delete(Integer id){ String hql="DEL ...
- bzoj1043 下落的圆盘
Description 有n个圆盘从天而降,后面落下的可以盖住前面的.求最后形成的封闭区域的周长.看下面这副图, 所有的红色线条的总长度即为所求. Input 第一行为1个整数n,N<=100 ...
- Python输入和输出
在很多时候,你会想要让你的程序与用户(可能是你自己)交互.你会从用户那里得到输入,然后打印一些结果.我们可以分别使用raw_input和print语句来完成这些功能.对于输出,你也可以使用多种多样的s ...
- CSS hack样式兼容模式收藏
part1 —— 浏览器测试仪器,测试您现在使用的浏览器类型 IE6 IE7 IE8 Firefox Opera Safari (Chrome) IE6 IE7 IE8 ...
- Microsoft Visual SourceSafe
Microsoft Visual SourceSafe是美国微软公司出品的版本控制系统,简称VSS.软件支持Windows系统所支持的所有文件格式,兼容Check out-Modify-Check i ...
- 黄聪:wordpress中remove_action、add_action、 do_action()的hook钩子都有哪些
原文地址:http://codex.wordpress.org/Plugin_API/Action_Reference muplugins_loaded After must-use plugins ...
- Grid_Oracle Grid Infrastructure概念介绍(概念)
2014-03-09 Created By BaoXinjian Thanks and Regards
- Report_客制化报表输出Excel后去0问题(案例)
2014-02-01 Created By BaoXinjian