博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1838 Banana(并查集)
阅读量:5057 次
发布时间:2019-06-12

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

http://poj.org/problem?id=1838

题意:有一个直角坐标系,相邻的点可以相连成一块,而且可以将k块相连,求最多有几个点可以连成一块。

思路:先并查集,再排序即可

 

 
#include
#include
#include
#include
#include
#include
#include
#define mem(a,b) memset(a,b,sizeof(a))#define ll __int64#define MAXN 16000#define INF 0x7ffffff#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1using namespace std;struct Point{ int x,y; int id;};Point p[16000+10];int fa[16000+10];int num[16000+10];int cnt[16000+10];int n;int cmpx(Point a,Point b){ if(a.x!=b.x) return a.x
>n>>m) { for(i=1;i<=n;i++) { cnt[i]=1; fa[i]=p[i].id=i; scanf("%d%d",&p[i].x,&p[i].y); } sort(p+1,p+n+1,cmpx); for(i=1;i

  

转载于:https://www.cnblogs.com/sola1994/p/3960931.html

你可能感兴趣的文章
OpenCV矩阵运算总结
查看>>
Java Build Practice 4:Extend and Invoke Ant API
查看>>
[转] Transformer图解
查看>>
FreeBSD方式安装 MAC OSX
查看>>
Linux 根文件系统制作
查看>>
IOS--沙盒机制
查看>>
My.Ioc 的性能
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
hdoj 1846 Brave Game(巴什博弈)
查看>>
Round #345 B. Beautiful Paintings(Div.2)
查看>>
51nod 1018排序
查看>>
sqlite的坑
查看>>
Elastic Search 上市了,市值翻倍,这群人财务自由了!
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
linux swoole
查看>>
An Easy Problem?! - POJ 2826(求面积)
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
css3实现循环执行动画,且动画每次都有延迟
查看>>
更改git仓库地址
查看>>