HDU 3264/POJ 3831 Open-air shopping malls(计算几何+二分)(2009 Asia Ningbo Regional)

Description

The city of M is a famous shopping city and its open-air shopping malls are extremely attractive. During the tourist seasons, thousands of people crowded into these shopping malls and enjoy the vary-different shopping. 
Unfortunately, the climate has changed little by little and now rainy days seriously affected the operation of open-air shopping malls―it’s obvious that nobody will have a good mood when shopping in the rain. In order to change this situation, the manager of these open-air shopping malls would like to build a giant umbrella to solve this problem. 
These shopping malls can be considered as different circles. It is guaranteed that these circles will not intersect with each other and no circles will be contained in another one. The giant umbrella is also a circle. Due to some technical reasons, the center of the umbrella must coincide with the center of a shopping mall. Furthermore, a fine survey shows that for any mall, covering half of its area is enough for people to seek shelter from the rain, so the task is to decide the minimum radius of the giant umbrella so that for every shopping mall, the umbrella can cover at least half area of the mall. 
 

Input

The input consists of multiple test cases.  The first line of the input contains one integer T (1<=T<=10), which is the number of test cases.  For each test case, there is one integer N (1<=N<=20) in the first line, representing the number of shopping malls.  The following N lines each contain three integers X,Y,R, representing that the mall has a shape of a circle with radius R and its center is positioned at (X,Y). X and Y are in the range of [-10000,10000] and R is a positive integer less than 2000. 
 

Output

For each test case, output one line contains a real number rounded to 4 decimal places, representing the minimum radius of the giant umbrella that meets the demands.

 

题目大意:给n个互相相离的圆,要求以其中一个圆的圆点为中心,画一个大圆,这个大圆要覆盖这n个圆至少一半的面积,求这个大圆的最小半径。

思路:枚举圆心,二分半径判断是否符合条件即可。

 

代码(0MS):

 1 #include <cstdio>
 2 #include <algorithm>
 3 #include <iostream>
 4 #include <cstring>
 5 #include <cmath>
 6 using namespace std;
 7 
 8 const int MAXN = 25;
 9 const double PI = 2 * acos(0.0);
10 const double EPF = 1e-8;
11 
12 double x[MAXN], y[MAXN], r[MAXN];
13 int n, T;
14 
15 double dist(double x1, double y1, double x2, double y2) {
16     int xx = x1 - x2, yy = y1 - y2;
17     return sqrt(xx * xx + yy * yy);
18 }
19 
20 double fusiform(double a, double c, double b) {
21     double angle = 2 * acos((a * a + b * b - c * c) / (2 * a * b));
22     double s1 = a * a * PI * (angle / (2 * PI));
23     double s2 = a * a * sin(angle) / 2;
24     return s1 - s2;
25 }
26 
27 bool common(double x1, double y1, double r1, double x2, double y2, double r2) {
28     double d = dist(x1, y1, x2, y2);
29     if(d >= r1 + r2) return false;
30     if(d <= fabs(r1 - r2)) {
31         if(r1 > r2) return true;
32         else return (r1 * r1 * 2 >= r2 * r2);
33     }
34     double value = fusiform(r1, r2, d) + fusiform(r2, r1, d);
35     return value * 2 >= r2 * r2 * PI;
36 }
37 
38 bool check(double ox, double oy, double rr) {
39     for(int i = 1; i <= n; ++i)
40         if(!common(ox, oy, rr, x[i], y[i], r[i])) return false;
41     return true;
42 }
43 
44 double calc(double ox, double oy) {
45     double l = 0, r = 50000;
46     while(r - l > 1e-6) {
47         double mid = (l + r) / 2;
48         if(check(ox, oy, mid)) r = mid;
49         else l = mid;
50     }
51     return l;
52 }
53 
54 void solve() {
55     double ans = 1e100, value;
56     for(int i = 1; i <= n; ++i) {
57         value = calc(x[i], y[i]);
58         ans = min(ans, value);
59     }
60     printf("%.4f\n", ans);
61 }
62 
63 int main() {
64     //cout<<PI<<endl;
65     scanf("%d", &T);
66     while(T--) {
67         scanf("%d", &n);
68         for(int i = 1; i <= n; ++i) scanf("%lf%lf%lf", &x[i], &y[i], &r[i]);
69         solve();
70     }
71 }
View Code

 

posted @ 2013-08-16 22:52  Oyking  阅读(279)  评论(0编辑  收藏  举报