Prim算法:

// ShellDawn
// POJ1789
// No.6

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<string>
#define MM(x) memset(x,0,sizeof(x))
using namespace std;

#define maxn 2005
int n;
string s[maxn];
int E[maxn][maxn];
int Lowcost[maxn];
int visited[maxn];

int doit(int x,int y){
    int t = 0;
    for(int i=0;i<7;i++){
        if(s[x][i] != s[y][i]) t++;
    }
    return t;
}

void init(){
    MM(visited);
    memset(Lowcost,0x3f,sizeof(Lowcost));
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            E[i][j] = doit(i,j);
        }
    }
}

void prim(){
    int ans = 0;
    Lowcost[0] = 0;
    visited[0] = 1;
    for(int i=0;i<n;i++) Lowcost[i] = E[0][i];
    for(int i=0;i<n-1;i++){
        int minloc = 0;
        int v = 10;
        for(int j=0;j<n;j++){
            if(visited[j] == 0 && Lowcost[j] < v){
                minloc = j;
                v = Lowcost[j];
            }
        }
        visited[minloc] = 1;
        ans += Lowcost[minloc];
        for(int j=0;j<n;j++){
            Lowcost[j] = min(Lowcost[j],E[minloc][j]);
        }
    }
    printf("The highest possible quality is 1/%d.\n",ans);
}

int main(){
    while(~scanf("%d",&n)&&n!=0){
        for(int i=0;i<n;i++) cin>>s[i];
        init();
        prim();
    }
    return 0;
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐