Problem J Single Round Match

Problem I

Table tennis

(Input File: table.in / Standard Output)

 

The 49th World Table Tennis Championships was held in Guangzhou from February 24th to March 2nd. It was a chance not to be missed for the table tennis enthusiast. TZD and other table tennis enthusiast in Zhongshan University decided to watch the first day’s matches. That day when they got to the gymnasium, there was still an hour left. So they decided to walk around. They found that not far away there were some children playing games round a table. This game was played like this: you stand by the table on one side, and on the other side there is a machine to serve you the balls one by one. Then you hit the balls. See figure 2.9.1.

 

Figure 2.9.1 table tennis

On the half of the table opposite to you, there are three circles of different size. From left to right, see figure 2.9.2, we call them big circle, middle circle and small circle. If you hit the ball onto the area inside the big circle, you will get one point. For the middle circle you will get two points. And for the small circle three points. But if you hit the ball right onto the boundary of circles, you will not get any points. If you get enough points, you will be given a small gift!  TZD also wanted to have a try.

 

Figure 2.9.2 the three circles

We assume that the circles are given by three integer (x- coordinate of the centre, y- coordinate of the centre, radius). From left to right the three circles are30, 30, 20, (100, 30, 10, (170, 30, 5. And each hit is described by two integer (xpos, ypos), meaning that TZD hit the ball onto the position (xpos, ypos). Now please tell TZD how many points he got after N hits.

 

Input:

The first line contains a positive integer T. T is the number of test cases followed.

For each test case, there is a positive integer N (0<=N<=60) in the first line, the number of TZD’s hits. Next come N pairs of integer (xpos, ypos), each pair in one line.(0<=xpos<=200, 0<=ypos<=100).

 

Output:

For each test case, print the total points in one line.

 

Sample input:

3

2

30 31

100 32

1

30 50

3

30 30

99 30

170 30

 

Sample output:

3

0

6

水题


代码:

#include <stdio.h>
int S(int a, int b){
	int l = (a - 30)*(a - 30) + (b - 30)*(b - 30);
	if (l < 400)
		return 1;
	return 0;
}
int M(int a, int b){
	int l = (a - 100)*(a - 100) + (b - 30)*(b - 30);
	if (l < 100)
		return 2;
	return 0;
}
int L(int a, int b){
	int l = (a - 170)*(a - 170) + (b - 30)*(b - 30);
	if (l < 25)
		return 3;
	return 0;
}
int main()
{
	int t;
	scanf("%d", &t);
	while (t--)
	{
		int n;
		scanf("%d", &n);
		int ans = 0;
		for (int i = 0; i < n; i++){
			int a, b;
			scanf("%d%d", &a, &b);
			ans += S(a, b) + M(a, b) + L(a, b);
		}
		printf("%d\n", ans);
	}
	return 0;
}




你可能感兴趣的:(C++,ACM)