首页 > POJ题解 > POJ 1127 Jack Straws C语言版

POJ 1127 Jack Straws C语言版

2009年6月17日 19:17 Slyar 发表评论 阅读评论

文章作者:Slyar 文章来源:Slyar Home (www.slyar.com) 转载请注明,谢谢合作。

计算几何

Description

In the game of Jack Straws, a number of plastic or wooden "straws" are dumped on the table and players try to remove them one-by-one without disturbing the other straws. Here, we are only concerned with if various pairs of straws are connected by a path of touching straws. You will be given a list of the endpoints for some straws (as if they were dumped on a large piece of graph paper) and then will be asked if various pairs of straws are connected. Note that touching is connecting, but also two straws can be connected indirectly via other connected straws.

Input

Input consist multiple case,each case consists of multiple lines. The first line will be an integer n (1 < n < 13) giving the number of straws on the table. Each of the next n lines contain 4 positive integers,x1,y1,x2 and y2, giving the coordinates, (x1,y1),(x2,y2) of the endpoints of a single straw. All coordinates will be less than 100. (Note that the straws will be of varying lengths.) The first straw entered will be known as straw #1, the second as straw #2, and so on. The remaining lines of the current case(except for the final line) will each contain two positive integers, a and b, both between 1 and n, inclusive. You are to determine if straw a can be connected to straw b. When a = 0 = b, the current case is terminated.

When n=0,the input is terminated.

There will be no illegal input and there are no zero-length straws.

Output

You should generate a line of output for each line containing a pair a and b, except the final line where a = 0 = b. The line should say simply "CONNECTED", if straw a is connected to straw b, or "NOT CONNECTED", if straw a is not connected to straw b. For our purposes, a straw is considered connected to itself.

Sample Input

7
1 6 3 3
4 6 4 9
4 5 6 7
1 4 3 5
3 5 5 5
5 2 6 3
5 4 7 2
1 4
1 6
3 3
6 7
2 3
1 3
0 0

2
0 2 0 0
0 0 0 1
1 1
2 2
1 2
0 0

0

Sample Output

CONNECTED
NOT CONNECTED
CONNECTED
CONNECTED
NOT CONNECTED
CONNECTED
CONNECTED
CONNECTED
CONNECTED

Slyar:说下题目大意。首先给出一个n,表示共有n条边,下面n行(编号1-n)每行给出4个数分别表示起始点的横纵坐标以及终止点的横纵坐标。接下来的若干行为查询条件,要你输出查询的两条边是否有关系(即直接相交或间接相交)。

我讨厌做计算几何题...这题主要就是判断由坐标给出的两条边是否相交,因为描述说可以间接相交,所以考虑使用并查集处理(如果两条边相交,就将它们合并)。

至于如何判断两条边相交...这个我不会,也没想出来,直接网上搜...发现一个利用"叉积"来进行"跨立判断"的公式,没看懂,所以就不讲了...等我研究清楚再专门发文章吧...囧

处理完所有的边后,查询就简单了,只要看被查询的两条边是否在同一个集合即可。如果在,则有关系;如果不在,则没有关系。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include<stdio.h>
#include<math.h>
 
#define MAX 15
 
/* 定义点信息,x为横坐标,y为纵坐标 */
typedef struct
{
	double x;
	double y;
}point;
 
/* 定义边信息,s为起始节点,e为终止节点 */
typedef struct
{
	point s;
	point e;
}line;
 
line p[MAX];
int father[MAX];
int rank[MAX];
 
/* 初始化集合 */
void Make_Set(int x)
{
	father[x] = x;
	rank[x] = 0;
}
 
/* 查找x元素所在的集合,回溯时压缩路径 */
int Find_Set(int x)
{
	if (x != father[x])
	{
		father[x] = Find_Set(father[x]);
	}
	return father[x];
}
 
/* 合并x,y所在的集合 */
void Union(int x, int y)
{
	if (x == y) return;
	if (rank[x] > rank[y])
	{
		father[y] = x;
	}
	else
	{
		if (rank[x] == rank[y])
		{
			rank[y]++;
		}
		father[x] = y;
	}
}
 
/* 最大值函数 */
double max(double x, double y)
{
	return x > y ? x : y;
}
 
/* 最小值函数 */
double min(double x, double y)
{
	return x < y ? x : y;
}
 
/* 叉积 (a-c)x(b-c) */
double multiply(point a, point b, point c)
{
	return (a.x - c.x) * (b.y - c.y) - (b.x - c.x) * (a.y - c.y);
}
 
/* 跨立判断 */
int intersect(line u, line v)
{
	return (( max(u.s.x, u.e.x) >= min(v.s.x, v.e.x)) 
	&& (max(v.s.x, v.e.x) >= min(u.s.x, u.e.x)) 
	&& (max(u.s.y, u.e.y) >= min(v.s.y, v.e.y)) 
	&& (max(v.s.y, v.e.y) >= min(u.s.y, u.e.y)) 
	&& (multiply(v.s, u.e, u.s) * multiply(u.e, v.e, u.s) >= 0) 
	&& (multiply(u.s, v.e, v.s) * multiply(v.e, u.e, v.s) >= 0));
}
 
int main()
{
	int n, i, j;
	int a, b, x, y;
	while(1)
	{
		scanf("%d", &n);
		if (n == 0) break;
		/* 初始化集合 */
		for(i = 1; i <= n; i++)
		{
			Make_Set(i);
		}
		/* 读入边信息 */
		for(i = 1; i <= n; i++)
		{
			scanf("%lf%lf%lf%lf", &p[i].s.x, &p[i].s.y, &p[i].e.x, &p[i].e.y);
		}
		/* 处理每条边,如果相交就合并 */
		for(i = 1; i <= n; i++)
		{
			for(j = 1; j <= n; j++)
			{
				if(i != j && intersect(p[i], p[j]))
				{
					x = Find_Set(i);
					y = Find_Set(j);
					Union(x,y);
				}
			}
		}
		/* 进行查询 */
		while(1)
		{
			scanf("%d %d", &a, &b);
			if (a + b == 0) break;
			/* 自己和自己肯定有关系 */
			if(a == b)
			{
				printf("CONNECTED\n");
			}
			else
			{
				/* 若在一个集合则两边有关系 */
				x = Find_Set(a);
				y = Find_Set(b);
				if(x == y)
				{
					printf("CONNECTED\n");
				}
				else
				{
					printf("NOT CONNECTED\n");
				}
			}
		}
	}
	//system("pause");
	return 0;
}
分类: POJ题解 标签: , ,
  1. 本文目前尚无任何评论.

bnuep:0801010047