08-图7 公路村村通 (30分)

08-图7 公路村村通 (30分)
在这里插入图片描述

#include <iostream>
using namespace std;
#define INFINITY 63325
#define MaxSize 1005
#define ERROR -1
int Dist[MaxSize];//distance from MST to Node
int Map[MaxSize][MaxSize];//a matrix which is used to restore city numbers and path numbers
int TotalCost=0;//minimun value of the cost
int CityNums,PathNums;

int Prim();
int FindMinDist();
int main()
{
    cin >> CityNums >> PathNums;
    int i,j;
    int V1,V2,Weight;
    for(i = 1;i<=CityNums;i++)
        for(j=1;j<=CityNums;j++)
        {
            if(i==j) Map[i][j]=0;
            else Map[i][j] = INFINITY;
        }
    for(i=0;i<PathNums;i++)
    {
        cin>>V1>>V2>>Weight;
        Map[V1][V2]=Weight;
        Map[V2][V1]=Weight;
    }
    cout<<Prim();
    return 0;
}
int Prim()
{
    int i,j,v;
    //begin at City1 and find pathes which are connected with City1
    for(i=1;i<=CityNums;i++)
        Dist[i]=Map[1][i];
    Dist[1]=0;
    //find minimum value of pathes
    for(i=1;i<CityNums;i++)
    {
        v=FindMinDist();
        if(v)
        {
            TotalCost+=Dist[v];
            Dist[v]=0;
            for(j=2;j<=CityNums;j++)
            {
                if(Dist[j]!=0&&Map[v][j]<Dist[j])
                    Dist[j]=Map[v][j];
            }
        }else return ERROR;
    }
    return TotalCost;
}
int FindMinDist()
{
    int MinV=0,MinDist=INFINITY;
    int i;
    for(i=1;i<=CityNums;i++)
    {
        if(Dist[i]!=0&&Dist[i]<MinDist)
        {
            MinDist = Dist[i];
            MinV=i;
        }
    }
    return MinV;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值