博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
YTU 1012: A MST Problem
阅读量:5037 次
发布时间:2019-06-12

本文共 2435 字,大约阅读时间需要 8 分钟。

1012: A MST Problem

时间限制: 1 Sec  
内存限制: 32 MB
提交: 7  
解决: 4

题目描述

It is just a mining spanning tree ( 最小生成树 ) problem, what makes you a little difficult is that you are in a 3D space.

输入

The first line of the input contains the number of test cases in the file. And t he first line of each case
contains one integer numbers n(0<n<30) specifying the number of the point . The n next n line s, each line
contain s Three Integer Numbers xi,yi and zi, indicating the position of point i.

输出

For each test case, output a line with the answer, which should accurately rounded to two decimals .

样例输入

221 1 02 2 031 2 30 0 01 1 1

样例输出

1.413.97

你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

#include
#include
#include
#include
using namespace std;const int infinity=99999999;const int maxnum=105;double map1[maxnum][maxnum];bool visited[maxnum];double low[maxnum];int nodenum;struct node{ int x; int y; int z;} nd[105];double prim(){ int i,j,pos=1; double result,Min; memset(visited,0,sizeof(visited));//初始化都未标记 result=0; for(i=1; i<=nodenum; i++) low[i]=map1[pos][i]; visited[pos]=1;//把1号作为起点 for(i=2; i<=nodenum; i++) //这个i没有其他的意思就是一个循环次数 { Min=infinity; pos=-1;//从1号开始找最小的边 for(j=1; j<=nodenum; j++) if(!visited[j]&&Min>low[j]) { Min=low[j]; pos=j; } if(pos==-1) return -1; visited[pos]=1;//做到与1os号最近的边 result+=Min;//加权值 for(j=1; j<=nodenum; j++) if(!visited[j]&&low[j]>map1[pos][j]) low[j]=map1[pos][j];//这个就是替换未被标记的最小权值! } return result;}int main(){ int n,i,j,t; double lenth,ans; cin>>t; while(t--) { cin>>n; nodenum=n; for(i=1; i<=nodenum; i++) for(j=1; j<=nodenum; j++) map1[i][j]=infinity; for(i=1; i<=n; i++) cin>>nd[i].x>>nd[i].y>>nd[i].z; for(i=1; i<=n; i++) { for(j=i+1; j<=n; j++) { lenth=sqrt((nd[i].x-nd[j].x)*(nd[i].x-nd[j].x)+(nd[i].y-nd[j].y)*(nd[i].y-nd[j].y)+(nd[i].z-nd[j].z)*(nd[i].z-nd[j].z)); // printf("djklsajiofgioj%.2lf\n",lenth); map1[i][j]=map1[j][i]=lenth; } } ans=prim();//开始rim算法 if(ans==-1) cout<<"?"<

转载于:https://www.cnblogs.com/im0qianqian/p/5989634.html

你可能感兴趣的文章
c++链接mysql5.7
查看>>
Ubuntu安装UFW防火墙
查看>>
心有所向,逐之
查看>>
java test
查看>>
13.敏捷项目管理——超越范围、进度和成本笔记
查看>>
00.敏捷回顾——引言笔记
查看>>
3.2.3.1 匹配单个字符
查看>>
字符串逆序的方法
查看>>
该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。...
查看>>
C50和机器学习
查看>>
Java中this用法总结
查看>>
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q28-Q31)
查看>>
关于使用Timer定时监测网络是否ping通
查看>>
定时器setTimeout()的传参方法
查看>>
导出成WORD文档(转)
查看>>
MyCat 枚举分片设计思考,查询命中条件
查看>>
selenium 截图 java、python、ruby,
查看>>
Maven 的聚合
查看>>
sbt使用详解
查看>>
Mybatis初步
查看>>