点和边的数量,及边之间的关系已经给定了。
只需要输入题中各边的的赋权值。
输入格式要以"("左括号开始,数据间用逗号隔开,以右括号结束
c语言最小生成树问题(街道管道铺设问题)
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
关注 #include <iostream> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; const int inf=0x3f3f3f3f; const int maxn=1e5+10; int par[105]; struct node{ int from,to,cost; }no[maxn*4]; void init() { for(int i=0;i<maxn;i++) par[i]=i; } int find(int x) { return par[x]==x?x:par[x]=find(par[x]); } void unite(int x,int y) { x=find(x); y=find(y); if(x!=y) par[x]=y; } bool same(int x,int y) { return find(x)==find(y); } int n,m,mo; bool cmp(node x,node y) { return x.cost<y.cost; } int kruskal() { int sum=0; for(int i=0;i<m;i++) { node a=no[i]; if(!same(a.from,a.to)){ unite(a.from,a.to); sum+=a.cost; } } return sum; } int main() { ios::sync_with_stdio(false); while(cin>>mo>>m>>n) { init(); for(int i=0;i<m;i++) { cin>>no[i].from>>no[i].to>>no[i].cost; } sort(no,no+m,cmp); int p=kruskal(); if(p<=mo)cout<<"Yes"<<endl; else cout<<"No"<<endl; } return 0; }
解决评论 打赏 举报无用 1
悬赏问题
- ¥30 STM32 INMP441无法读取数据
- ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
- ¥15 用visualstudio2022创建vue项目后无法启动
- ¥15 x趋于0时tanx-sinx极限可以拆开算吗
- ¥500 把面具戴到人脸上,请大家贡献智慧
- ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
- ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
- ¥30 c#打开word开启修订并实时显示批注
- ¥15 如何解决ldsc的这条报错/index error
- ¥15 VS2022+WDK驱动开发环境