Problem 2148 Moon Game

Accept: 24    Submit: 61 Time Limit: 1000 mSec    Memory Limit : 32768 KB

Problem Description

Fat brother and Maze are playing a kind of special (hentai) game in the clearly blue sky which we can just consider as a kind of two-dimensional plane. Then Fat brother starts to draw N starts in the sky which we can just consider each as a point. After he draws these stars, he starts to sing the famous song “The Moon Represents My Heart” to Maze.

You ask me how deeply I love you,

How much I love you?

My heart is true,

My love is true,

The moon represents my heart.

But as Fat brother is a little bit stay-adorable(呆萌), he just consider that the moon is a special kind of convex quadrilateral and starts to count the number of different convex quadrilateral in the sky. As this number is quiet large, he asks for your help.

Input

The first line of the date is an integer T, which is the number of the text cases.

Then T cases follow, each case contains an integer N describe the number of the points.

Then N lines follow, Each line contains two integers describe the coordinate of the point, you can assume that no two points lie in a same coordinate and no three points lie in a same line. The coordinate of the point is in the range[-10086,10086].

1 <= T <=100, 1 <= N <= 30

Output

For each case, output the case number first, and then output the number of different convex quadrilateral in the sky. Two convex quadrilaterals are considered different if they lie in the different position in the sky.

Sample Input

2
4
0 0
100 0
0 100
100 100
4
0 0
100 0
0 100
10 10

Sample Output

Case 1: 1
Case 2: 0
 
福州大学,福建省赛;ps:http://acm.fzu.edu.cn/problem.php?pid=2148
 
题意;平面上给定N个点求不同的凸四边形个数;
 
思路:凸四边形的对角线相交;关键是判断对角线相交问题,先连接两直线,然后另外的两点代入直线,得到s1,s2;
 
s1*s2<0,表示在线段两侧,这里要用两次比较;即当a,b做线段时,判断点d,c是否在线段两端;当c,d做线段时,
 
判断a,b是否在线段两端,这样是为了排除三个点共线的情况!
 
详见代码:
#include<stdio.h>
#include<math.h>
#include<string.h>
#define MAX 35
__int64 ans[MAX][]; int cheak(int i,int j,int k,int l)
{ __int64 x1,y1,x2,y2,x3,y3,x4,y4;
x1=ans[i][];
y1=ans[i][];
x2=ans[j][];
y2=ans[j][];
x3=ans[k][];
y3=ans[k][];
x4=ans[l][];
y4=ans[l][];
double k1,k2,b1,b2,s1,s2,s3,s4;
if(x2==x1&&x3==x4)
return ;
if(x2==x1&&x3!=x4)
{
s1=x3-x1;
s2=x4-x1;
if(s1*s2>=)
return ;
else
{
k2=(y3-y4)*1.0/(x3-x4);
b2=y3-k2*x3;
s3=(y2-b2)-k2*x2;
s4=(y1-b2)-k2*x1;
if(s3*s4>=)
return ;
if(s1*s2<&&s3*s4<)
return ;
} }
if(x3==x4&&x1!=x2)
{
s3=x1-x3;
s4=x2-x3;
if(s3*s4>=)
return ;
else
{
k1=(y2-y1)*1.0/(x2-x1);
b1=y1-k1*x1;
s1=(y3-b1)-k1*x3;
s2=(y4-b1)-k1*x4;
if(s1*s2>=)
return ;
if(s1*s2<&&s3*s4<)
return ;
}
}
else
{
k1=(y2-y1)*1.0/(x2-x1);
b1=y1-k1*x1;
s1=(y3-b1)-k1*x3;
s2=(y4-b1)-k1*x4;
if(s1*s2>=)
{
return ;
}
else
{
k2=(y3-y4)*1.0/(x3-x4);
b2=y3-k2*x3;
s3=(y2-b2)-k2*x2;
s4=(y1-b2)-k2*x1;
if(s3*s4>=)
return ;
if(s1*s2<&&s3*s4<)
return ;
}
}
} int main()
{
int T,N;
int i,j,k,l,cnt;
scanf("%d",&T);
for(cnt=;cnt<=T;cnt++)
{
scanf("%d",&N);
memset(ans,,sizeof(ans));
for(i=;i<N;i++)
{
scanf("%I64d%I64d",&ans[i][],&ans[i][]);
}
int temp=;
for(i=;i<N-;i++)
for(j=i+;j<N-;j++)
for(k=j+;k<N-;k++)
for(l=k+;l<N;l++)
{
if(cheak(i,j,k,l))
temp++;
if(cheak(i,k,j,l))
temp++;
if(cheak(i,l,k,j))
temp++;
}
printf("Case %d: %d\n",cnt,temp); }
return ;
} /*
20
4
0 0
100 0
0 100
100 100
5
0 0
10 0
0 5
5 5
15 0
4
0 0
100 0
0 100
10 10
5
1 1
5 6
9 7
5 5
2 2
4
1 1
1 1
1 1
1 1
5
1 1
2 2
3 3
4 4
5 5
6
5 8
6 4
1 0
10 5
8 6
3 5 */

   

    表示比赛的时候策略错误。。。应该让我自己做这题的,不过还是很感谢我给力的队友啊。。。    

(虽然我是个小坑!              o(∩_∩)o 哈哈)那么我会好好努力的,大家一起加油哈!

Moon Game (凸四边形个数,数学题)的更多相关文章

  1. HDU3629(凸四边形的个数)

    HDU 3629 计算几何 题目描述:给你n个点(4~700), 问你能够成多少个不同的凸四边形. 解题报告: 暴力的话C(700,4)必然超时,发现,任何一个凹包必然是其中一点在其它3点构成的三角形 ...

  2. FZU Problem 2148 Moon Game (判断凸四边形)

    题目链接 题意 : 给你n个点,判断能形成多少个凸四边形. 思路 :如果形成凹四边形的话,说明一个点在另外三个点连成的三角形内部,这样,只要判断这个内部的点与另外三个点中每两个点相连组成的三个三角形的 ...

  3. 暴力(判凸四边形) FZOJ 2148 Moon Game

    题目传送门 题意:给了n个点的坐标,问能有几个凸四边形 分析:数据规模小,直接暴力枚举,每次四个点判断是否会是凹四边形,条件是有一个点在另外三个点的内部,那么问题转换成判断一个点d是否在三角形abc内 ...

  4. 172. Factorial Trailing Zeroes(阶乘中0的个数 数学题)

    Given an integer n, return the number of trailing zeroes in n!. Example 1: Input: 3 Output: 0 Explan ...

  5. ACM学习历程—FZU2148 Moon Game(计算几何)

    Moon Game Description Fat brother and Maze are playing a kind of special (hentai) game in the clearl ...

  6. Problem A: 踢罐子 解题报告

    Problem A: 踢罐子 Description 平面上有\(n\)个点,其中任意2点不重合,任意3点不共线. 我们等概率地选取一个点A,再在剩下的\(n-1\)个点中等概率地选取一个点B,再在剩 ...

  7. fzu Problem 2148 Moon Game(几何 凸四多边形 叉积)

    题目:http://acm.fzu.edu.cn/problem.php?pid=2148 题意:给出n个点,判断可以组成多少个凸四边形. 思路: 因为n很小,所以直接暴力,判断是否为凸四边形的方法是 ...

  8. ACM: FZU 2148 Moon Game - 海伦公式

     FZU 2148  Moon Game Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64 ...

  9. 数论 - Moon Game

    Fat brother and Maze are playing a kind of special (hentai) game in the clearly blue sky which we ca ...

随机推荐

  1. 19_python_反射

    一.内置函数(补充)          1.issubclass() -- 方法用于判断参数 class 是否是类型参数 classinfo 的子类.   语法格式:issubclass(class, ...

  2. sublime text syntaxdef

    http://sublimetext.info/docs/en/extensibility/syntaxdefs.html

  3. DES/3DES/AES区别

    公元前400年,古希腊人发明了置换密码.1881年世界上的第一个电话保密专利出现.在第二次世界大战期间,德国军方启用“恩尼格玛”密码机,密码学在战争中起着非常重要的作用. DES 1977年1月,美国 ...

  4. 转---如何让前端更安全?——XSS攻击和防御详解

    前言 平时很少关注安全这块的技术,曾经也买过一本<Web前端黑客技术揭秘>但至今还没翻过,尴尬.今天的早读文章由腾讯优测@小吉带来的分享. 正文从这开始~ 最近深入了解了一下XSS攻击.以 ...

  5. WCF:wsdl

  6. Git - 必知必会

    配置Git git config --global user.name "your_name" # 配置全局用户名 git config --global user.email & ...

  7. linux中jdk的安装与配置

    一.卸载系统已有的JDK 1.查看已安装的jdk rpm -qa|grep jdk 2.卸载jdk rpm -e --nodeps java-1.6.0-openjdk-1.6.0.0-1.66.1. ...

  8. Python中对矩阵的洗牌操作

    [code] import numpy as np # 创建随机交换的索引 permutation = list(np.random.permutation(3)) # 创建矩阵X,Y X = np. ...

  9. 剑指offer六之求旋转数组的最小数字

    一.题目 把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转. 输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素. 例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个 ...

  10. 集合框架_DAY17

    1:五种数据结构: 数组:长度固定,有序,查找方便   链表:添加删除方便   栈:先进后出    队列:先进先出   树结构:完成排序动作 2:泛型(了解) (1)是一种把明确数据类型的工作推迟到创 ...