Problem F: F. Distribution
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 10 Solved: 9
[ Submit][ Status][ Web Board]
Description
One day , Wang and Dong in the Dubai desert expedition, discovered an ancient castle. Fortunately, they found a map of the castle.The map marks the location of treasures.
They agreed to distribute the treasures according to the following rules:
Wang draws a horizontal line on the map and then Dong draws a vertical one so that the map is divided into 4 parts, as show below.

Wang will save the treasures in I and III ,while those situated in II and IV will be taken away by Dong. Wang first draw a horizontal line, Dong after the draw a vertical line.
They drew several pairs of lines. For each pair, Wang wants to know the difference between their treasures.
It's guaranteed that all the reasures will lie on neither of the lines drew by them.
Input
the first line contains two integers N and M, where N is the number of treasures on the map and M indicates how many times they are going to draw the lines. The 2nd to (N+1)-th lines Xi, Yi contain the co-ordinates of the treasures and the last M lines consist of the M pairs integers (X, Y) which means that the two splitting lines intersect at point (X, Y).
( 0 < N, M ≤ 100, 0 ≤ Xi, Yi, X,Y ≤ 1000 )
Output
Output contains M lines , a single line with a integer , the difference described above.
Sample Input
29 22
17 14
18 23
3 15
6 28
30 27
4 1
26 7
8 0
11 21
2 25
5 10
19 24
Sample Output
4
4
#include<iostream>
using namespace std;
int main()
{
int N, M;
cin >> N >> M;
int X[100], Y[100];
for (int i = 0; i < N; i++)
cin >> X[i] >> Y[i];
while (M--)
{
int x, y, sum = 0;
cin >> x >> y;
for (int j = 0; j < N; j++)
{
if (((x - X[j]) > 0 && (y - Y[j]) > 0) || ((x - X[j]) < 0 && (y - Y[j]) < 0))
sum++;
}
cout << 2 * sum - N << endl;
}
return 0;
}
本文介绍了一个有趣的宝藏分配问题:两位探险家通过绘制水平和垂直线来分割地图并分配宝藏。文章提供了一段C++代码实现,该算法计算了两人分别获得的宝藏数量之差。
451

被折叠的 条评论
为什么被折叠?



