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 t
o is the original type and t
d the type derived from it and d(t
o,t
d) 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.
Inputthis
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.
Outputspa
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 Inputcode
4
aaaaaaa
baaaaaa
abaaaaa
aabaaaa
0
Sample Outputblog
The highest possible quality is 1/3.
題意:輸入1個n,表明有多少組字符數組。
每一個數組都只有7個字符,每2個數組不一樣字符的個數表明這2個字符串的距離(假設爲距離)。
如今要你構建一棵樹,使得所花費的距離最小
最小生成樹問題
這題我試着用prime來寫,
1 #include <cstdio>
2 #include <cstring>
3 #include <algorithm>
4 #include <stack>
5 #include <string>
6 #include <cmath>
7 #include <vector>
8 #include <map>
9 #include <queue>
10
11 using namespace std;
12 const int maxn = 2010 ;
13 const int INF = 0x7fffffff;
14 char tu[maxn][8];
15 int vis[maxn], n, dis[maxn];
16 int dist(int x, int y) {
17 int sum = 0;
18 for (int i = 0 ; i < 7 ; i++)
19 if (tu[x][i] != tu[y][i]) sum++;
20 return sum;
21 }
22 int main() {
23 while(scanf("%d", &n) != EOF) {
24 if (n == 0) break;
25 for (int i = 0 ; i < n ; i++)
26 scanf("%s", tu[i]);
27 for (int i = 0 ; i < n ; i++)
28 dis[i] = dist(0, i);
29 memset(vis, 0, sizeof(vis));
30 dis[0] = 0;
31 vis[0] = 1;
32 int minn, temp, sum = 0;
33 for (int i = 0 ; i < n - 1 ; i++) {
34 minn = INF;
35 for (int j = 0 ; j < n ; j++) {
36 if ( !vis[j] && minn > dis[j]) {
37 minn = dis[j];
38 temp = j;
39 }
40 }
41 sum += minn;
42 vis[temp] = 1;
43 for (int j = 0 ; j < n ; j++) {
44 if ( !vis[j] && dis[j] > dist(temp, j)) dis[j] = dist(temp, j);
45 }
46 }
47 printf("The highest possible quality is 1/%d.\n", sum);
48 }
49 return 0;
50 }