Truck history
Time limit:2000 ms |
|
Memory limit:65536 K |
Total submissions:18981 |
|
Accepted:7321 |
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 (role t for the first truck type which was not derived from any other type ). the quality of a derivation plan was then defined
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 shocould 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 shocould output the text "the highest possible quality is 1/Q.", where 1/Q is the quality of the best derivation plan.
Sample Input
4aaaaaaabaaaaaaabaaaaaaabaaaa0
Sample output
The highest possible quality is 1/3.
Source
CTU open 2003 has read the questions twice, but did not understand the questions. It can be understood only after reading the explanations in the discussion area. Given the number of N vertices, it is represented by a 7-character string. The distance between any two vertices is the number of different characters in the corresponding bits of their strings.
#include <stdio.h>#include <string.h>#define maxn 2010#define maxm maxn * maxn#define inf 0x3f3f3f3fint head[maxn], n, id;struct Node {int v, w, next;} E[maxm];char map[maxn][8];int dis[maxn];bool vis[maxn];int calDis(int x, int y) {int sum = 0;for(int i = 0; i < 7; ++i)if(map[x][i] != map[y][i]) ++sum;return sum;}void addEdge(int u, int v, int w) {E[id].v = v; E[id].w = w;E[id].next = head[u]; head[u] = id++;}void getMap() {memset(head, -1, sizeof(int) * n);int i, j, w; id = 0;for(i = 0; i < n; ++i) {scanf("%s", map[i]);for(j = 0; j < i; ++j) {w = calDis(i, j);addEdge(i, j, w);addEdge(j, i, w);}}}int getNext() {int i, pos = -1, w = inf;for(i = 0; i < n; ++i)if(!vis[i] && w > dis[i]) {w = dis[i]; pos = i;}return pos;}int Prim() {int i, u, v, sum = 0;for(i = 0; i < n; ++i) {vis[i] = 0; dis[i] = inf;}dis[u = 0] = 0;while(u != -1) {vis[u] = 1; sum += dis[u];for(i = head[u]; i != -1; i = E[i].next)if(!vis[v = E[i].v] && dis[v] > E[i].w)dis[v] = E[i].w;u = getNext();}return sum;}void solve() {printf("The highest possible quality is 1/%d.\n", Prim());}int main() {while(scanf("%d", &n), n) {getMap();solve();}return 0;}
Poj1789 truck history [Minimum Spanning Tree prim]