Truck history
Time Limit: 2000MS |
|
Memory Limit: 65536K |
Total Submissions: 19711 |
|
Accepted: 7604 |
Description Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks is used for vegetable delivery, and for furniture, or for bricks. The company have its own code describing each type of a truck. The code is simply a string of exactly seven lowercase letters (all letter in each position have a very special meaning bu T is the unimportant for this task). At the beginning of company's history, just a single truck type is used but later other types were derived from it, then From the new types another types were derived, and so on.
Today, ACM is a rich enough to pay historians to study it history. One thing historians tried to find out are 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 is derived from exactly one other truck type (except for the first truck type whic H is not derived from any other type). The quality of a derivation plan was and then defined as
1/σ (TO,TD) d (TO,TD)
Where the sum goes over all pairs of types in the derivation plan such that T o are the original type and T d the type Deri Ved from it and D (T o,t D) are the distance of the types.
Since historians failed, you is to the write a program to the 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). Assume that the codes uniquely describe the trucks, i.e., No. Of these N lines is 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 are 1/q", where 1/q is the Qu Ality of the best derivation plan.
Sample Input
4
aaaaaaa
baaaaaa
abaaaaa
aabaaaa
0
Sample Output
The highest possible quality is 1/3.
The problem is not difficult, is test instructions difficult to understand, is to give you some license plate number, and then you compare the number of two cars with the same position of different characters as the weight value, generate a minimum spanning tree, prim OK.
#include <cstdio> #include <cstring> #define INF 0x3f3f3f3f #define MAXN 2020 int DIST[MAXN];
int MAP[MAXN][MAXN];
BOOL VIS[MAXN];
Char s[maxn][10];
int n;
int GetNext () {int i,u=-1,dis=inf;
for (I=1;i<=n;++i) if (!vis[i] && Dist[i]<dis) {dis=dist[i];u=i;
} return u;
} int Prim () {int sum=0,i,u,v;
for (i=1;i<=n;++i) {vis[i]=0;dist[i]=inf;
} u=1;dist[u]=0;
while (U!=-1) {vis[u]=1;sum+=dist[u];
for (I=1;i<=n;++i) if (!vis[i] && dist[i]>map[u][i]) dist[i]=map[u][i];
U=getnext ();
} return sum;
} int Change (int i,int j) {int k,ans=0;
for (K=0;k<7;++k) if (s[i][k]!=s[j][k]) ans++;
return ans;
} int main () {while (scanf ("%d", &n), n) {int i,j;
for (I=1;i<=n;++i) scanf ("%s", S[i]); for (I=1;i<=n;++i) for (j=i+1;j<=n;++J) Map[i][j]=map[j][i]=change (I,J);
printf ("The highest possible quality is 1/%d.\n", prim ());
} return 0;
}