码迷,mamicode.com
首页 > 其他好文 > 详细

codechef Three Way Communications 题解

时间:2014-05-10 09:11:21      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   class   code   ext   

The Chef likes to stay in touch with his staff. So, the Chef, the head server, and the sous-chef all carry two-way transceivers so they can stay in constant contact. Of course, these transceivers have a limited range so if two are too far apart, they cannot communicate directly.

The Chef invested in top-of-the-line transceivers which have a few advanced features. One is that even if two people cannot talk directly because they are out of range, if there is another transceiver that is close enough to both, then the two transceivers can still communicate with each other using the third transceiver as an intermediate device.

There has been a minor emergency in the Chef‘s restaurant
and he needs to communicate with both the head server and the sous-chef right away. Help the Chef determine if it is possible for all three people to communicate with each other, even if two must communicate through the third because they are too far apart.

Input

The first line contains a single positive integer T ≤ 100 indicating the number of test cases to follow. The first line of each test case contains a positive integer R ≤ 1,000 indicating that two transceivers can communicate directly without an intermediate transceiver if they are at most R meters away from each other. The remaining three lines of the test case describe the current locations of the Chef, the head server, and the sous-chef, respectively. Each such line contains two integers X,Y (at most 10,000 in absolute value) indicating that the respective person is located at position X,Y.

Output

For each test case you are to output a single line containing a single string. If it is possible for all three to communicate then you should output "yes". Otherwise, you should output "no".

To be clear, we say that two transceivers are close enough to communicate directly if the length of the straight line connecting their X,Y coordinates is at most R.

Example

Input:
3
1
0 1
0 0
1 0
2
0 1
0 0
1 0
2
0 0
0 2
2 1


Output:
yes
yes
no

会求点和点之间的距离即可。

使用距离的平方比较即可。

#pragma once 
#include <stdio.h>

struct ThreeWayPoint
{
	int x, y;
};

int ThreeWayCommunications()
{
	int T;
	scanf("%d", &T);
	while (T--)
	{
		int R;
		scanf("%d", &R);
		ThreeWayPoint p1, p2, p3;
		scanf("%d %d %d %d %d %d", 
			&p1.x, &p1.y, &p2.x, &p2.y, &p3.x, &p3.y);

		R *= R;
		int P12 = 0, P13 = 0, P23 = 0;
		P12 = (p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y);
		P13 = (p1.x - p3.x) * (p1.x - p3.x) + (p1.y - p3.y) * (p1.y - p3.y);
		P23 = (p3.x - p2.x) * (p3.x - p2.x) + (p3.y - p2.y) * (p3.y - p2.y);
		if (P12 <= R && P13 <= R) puts("yes");
		else if (P23 <= R && P12 <= R) puts("yes");
		else if (P13 <= R && P23 <= R) puts("yes");
		else puts("no");
	}
	return 0;
}




codechef Three Way Communications 题解,布布扣,bubuko.com

codechef Three Way Communications 题解

标签:des   style   blog   class   code   ext   

原文地址:http://blog.csdn.net/kenden23/article/details/24986677

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!