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

建议使用的浏览器:

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

3629:Convex

题目描述
Your task is very simple. You will get the coordinates of n points in a plane. It is guaranteed that there are no three points on a straight line. You can choose any four points from these points to construct a quadrangle. Now, please tell me how many convex quadrangles you can construct.
输入解释
The first line of input contain an integer z (z ≤ 20), indicating the number of test cases.
For each test case, the first line contain an integer n (4 ≤ n ≤ 700), indicating the number of points. Each of the next n lines contains two integers x and y (-1000000 ≤ x, y ≤ 1000000), indicating the coordinate of corresponding point.

输出解释
For each test case, just output a single integer, the number of convex quadrangles you can construct.
输入样例
2
4
0 0
0 1
1 0
1 1
4
0 0
1 0
0 1
-1 -1
输出样例
1
0
来自杭电HDUOJ的附加信息
Recommend lcy

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

源链接: HDU-3629

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

共提交 0

通过率 --%
时间上限 内存上限
10000/4000MS(Java/Others) 32768/32768K(Java/Others)