Problem G. Birthday Cake |
Lucy and Lily are twins. Today is their birthday. Mother buys a birthday cake for them.Now we put the cake onto a Descartes coordinate. Its center is at (0,0), and the cake's length of radius is 100.
There are 2N (N is a integer, 1<=N<=50) cherries on the cake. Mother wants to cut the cake into two halves with a knife (of course a beeline). The twins would like to be treated fairly, that means, the shape of the two halves must be the same (that means the beeline must go through the center of the cake) , and each half must have N cherrie(s). Can you help her?
Note: the coordinate of a cherry (x , y) are two integers. You must give the line as form two integers A,B(stands for Ax+By=0), each number in the range [-500,500]. Cherries are not allowed lying on the beeline. For each dataset there is at least one solution.
2 -20 20 -30 20 -10 -50 10 -5 0
0 1题目大意:将所给的坐标平均分割。
解题思路:枚举所有情况,碰到符合的情况立即输出。
#include<stdio.h> #include<string.h> #define N 105 int x[N], y[N]; int n; void find() { int p, q; for(int a = -500; a <= 500 ; a++) { for(int b = -500; b <= 500; b++) { p = 0; q = 0; for(int i = 0; i < 2 * n; i++) { int k = x[i] * a + y[i] * b; if(k > 0) p++; else if(k < 0) q++; else break; if(p > n) break; if(q > n) break; if(i == 2 * n - 1 && p == q) { printf("%d %d\n", a, b); return; } } } } } int main( ) { while(scanf("%d", &n), n) { // Init. memset(x, 0, sizeof(x)); memset(y, 0, sizeof(y)); // Read. for(int i = 0; i < 2 * n; i++) scanf("%d%d", &x[i], &y[i]); find(); } return 0;}