当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5462:Manors

题目描述
Some famous theoretical scientists with their wives bought $4095^2$ acres of Prairie Nebraska. They describe it as a square of length $4095$. Now they want to build their private manors. Each theoretical scientist with his wife (for example, the $i$-th couple) select $m$ fixed positions in the square, denoted by $(x_{i1},y_{i1}),(x_{i2},y_{i2}),\cdots,(x_{im},y_{im})$, to put their own flags. We have known that the gravity centres of flags for two different theoretical scientists are distinct.

For every inch of land in this square, the influence of the $i$-th theoretical scientists and his wife, denoted by $I_i((x,y))$, is defined as
$$I_i((x,y)) = \{\frac{1}{m} \sum_{j=1}^m ((x-x_{ij})^2 + (y-y_{ij})^2)\}^{-1}.$$
The couple with the highest influence has the ownership. Your mission is to compute the areas of each private manors.
输入解释
The input contains several test cases. The first line of the input is a single integer $t~(t\le 10)$ which is the number of test cases. Then $t$ test cases follow.

Each test case contains several lines. The first line contains the integer $n~(1\le n\le 100)$ which is the number of theoretical scientists, and the integer $m~(1\le m\le 2000)$. The $i$-th line of the next $n$ lines contains $2m$ integers $x_1,y_1,x_2,y_2,\cdots,x_m,y_m$ between $0$ to $4095$ which correspond to the positions of $m$ flags belonging to the $i$-th theoretical scientist and his wife.
输出解释
For each test case, you should output the areas of each manors in one line.

You need to do decimals to round up and round down numbers (omitting decimal fractions smaller than $0.5$ and counting all others, including $0.5$, as $1$).
输入样例
2

4 1
1 1
1 3
3 1
3 3

2 2
1 1 1 3
2 1 3 2
输出样例
Case #1: 4 8186 8186 16752649
Case #2: 2798933 13970093
来自杭电HDUOJ的附加信息
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5462

最后修改于 2020-10-25T23:22:52+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
6000/3000MS(Java/Others) 65535/102400K(Java/Others)