题目:http://acm.hdu.edu.cn/showproblem.php?pid=1558
Problem Description
A segment and all segments which are connected with it compose a segment set. The size of a segment set is the number of segments in it. The problem is to find the size of some segment set.5
这道题题意就是:
给你N个命令,如果命令为P,则向平面内添加一条线段,并判断是否与之前的相交,若相交则并入相应集合内。
如果命令为Q ,则输出线段号为Q后面数字 所在集合的线段总数。
解题:
首先肯定要用到线段相交。
其次,如何判断集合内的个数?————并查集!
恩,用并查集如何取该集合个数呢?
从每个集合所唯一的根下手,让根来存储集合内元素个数。
因为无论是合并,还是查找某元素,最终都会追溯到该集合的根。
每次合并的时候,主集合将自己和附属集合的个数和存在主集合内就可以。
不过这要开两个数组来完成啦~一个集合作为father数组,正常的并查集,另一个用来存储集合元素个数。
初始化的时候要使每个元素个数都为1(就是自己)。
PS:格式!!又WA一次。。。o(╯□╰)o啊~~~
每两组数据间有一个空行,最后一个数据后没有空行~!
#include <iostream> #include <string.h> using namespace std; const double EPS = 1e-10; #define MAX 1001 struct point { double x,y; }; struct line { point a,b; }l[MAX]; int father[MAX],num[MAX]; double Max(double a,double b) {return a>b?a:b;} double Min(double a,double b) {return a>b?b:a;} // 判断两线段是否相交(非规范相交) bool inter(line l1,line l2) { point p1,p2,p3,p4; p1=l1.a;p2=l1.b; p3=l2.a;p4=l2.b; if( Min(p1.x,p2.x)>Max(p3.x,p4.x) || Min(p1.y,p2.y)>Max(p3.y,p4.y) || Min(p3.x,p4.x)>Max(p1.x,p2.x) || Min(p3.y,p4.y)>Max(p1.y,p2.y) ) return 0; double k1,k2,k3,k4; k1 = (p2.x-p1.x)*(p3.y-p1.y) - (p2.y-p1.y)*(p3.x-p1.x); k2 = (p2.x-p1.x)*(p4.y-p1.y) - (p2.y-p1.y)*(p4.x-p1.x); k3 = (p4.x-p3.x)*(p1.y-p3.y) - (p4.y-p3.y)*(p1.x-p3.x); k4 = (p4.x-p3.x)*(p2.y-p3.y) - (p4.y-p3.y)*(p2.x-p3.x); return (k1*k2<=EPS && k3*k4<=EPS); } //初始化函数 void Init(int n) { int i; for(i=1;i<=n;i++) { father[i]=i; num[i]=1; } } //查找函数 int Find(int x) { while(father[x]!=x) x=father[x]; return x; } //合并函数 void combine(int a,int b) { int temp_a,temp_b; temp_a=Find(a); temp_b=Find(b); // 在合并集合的时候,相应集合所含的个数也要合并 if(temp_a!=temp_b) { father[temp_a]=temp_b; num[temp_b]+=num[temp_a]; } } int main() { int test,i,n,k,js; char c; cin>>test; while(test--) { js=0; cin>>n; Init(n); while(n--) { cin>>c; // 判断是P还是Q if(c=='P') { ++js; cin>>l[js].a.x>>l[js].a.y>>l[js].b.x>>l[js].b.y; // 判断该线段与之前线段是否相交,相交则合并 for(i=1;i<js;++i) { if( inter(l[js],l[i]) ) combine(js,i); } } else { cin>>k; cout<<num[Find(k)]<<endl; } } // 格式!!!很重要,最后一组测试数据后无空行 if(test) cout<<endl; } return 0; }