博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Luogu P2847 [USACO20DEC]Moocast(gold)奶牛广播-金
阅读量:4952 次
发布时间:2019-06-12

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

解题思路

要保证图是强连通的,用因为给出的边全部都是双向边。考虑树形的结构,在一棵树上的$N$个节点一定是强连通的。他们都能够互相到达。又要保证树上的$n-1$条边中的最长的一条边最小。那就用Kruskal求一个最小生成树,找出其中的最长边,平方就是答案

 

附上代码

#include 
#include
#include
#include
#include
using namespace std;const int maxn = 1e3+3;int n, x[maxn], y[maxn], cnt, tot, f[maxn];double Ans, d[maxn][maxn];struct Edge { int u, v; double w;}ed[maxn * maxn];inline bool cmp(Edge a, Edge b) { return a.w < b.w;}inline int find(int x) { if(x == f[x]) return x; else return f[x] = find(f[x]);}inline void Kruskal() { for(int i=1; i<=n; i++) f[i] = i; for(int i=1; i<=n; i++) { for(int j=1; j<=n; j++) { if(i != j) { ++cnt; ed[cnt].u = i, ed[cnt].v = j, ed[cnt].w = d[i][j]; //printf("%d %d %.2lf\n", ed[cnt].u, ed[cnt].v, ed[cnt].w); } } } sort(ed+1, ed+1+cnt, cmp); for(int i=1; i<=cnt; i++) { int xx = find(ed[i].u), yy = find(ed[i].v); if(xx != yy) { f[xx] = find(yy); tot ++; Ans = ed[i].w; } if(tot == n-1) { break; } }}int main() { scanf("%d", &n); for(int i=1; i<=n; i++) { scanf("%d%d", &x[i], &y[i]); } for(int i=1; i<=n; i++) { for(int j=1; j<=n; j++) { d[i][j] = sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])); //printf("%.2lf ", d[i][j]); } //printf("\n"); } Kruskal(); printf("%.0lf", Ans * Ans);}

 

转载于:https://www.cnblogs.com/bljfy/p/9463802.html

你可能感兴趣的文章
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
Codeforces 40 E. Number Table
查看>>
CLR via C#(第3 版)
查看>>
java语法之final
查看>>
关于响应式布局
查看>>
详解ASP.Net 4中的aspnet_regsql.exe
查看>>
python 多进程和多线程的区别
查看>>
hdu1398
查看>>
[android] 网络断开的监听
查看>>
156.Binary Tree Upside Down
查看>>
MongoDB在windows下安装配置
查看>>