Moon Game (凸四边形个数,数学题)
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
Sample Output
#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 (凸四边形个数,数学题)的更多相关文章
- HDU3629(凸四边形的个数)
HDU 3629 计算几何 题目描述:给你n个点(4~700), 问你能够成多少个不同的凸四边形. 解题报告: 暴力的话C(700,4)必然超时,发现,任何一个凹包必然是其中一点在其它3点构成的三角形 ...
- FZU Problem 2148 Moon Game (判断凸四边形)
题目链接 题意 : 给你n个点,判断能形成多少个凸四边形. 思路 :如果形成凹四边形的话,说明一个点在另外三个点连成的三角形内部,这样,只要判断这个内部的点与另外三个点中每两个点相连组成的三个三角形的 ...
- 暴力(判凸四边形) FZOJ 2148 Moon Game
题目传送门 题意:给了n个点的坐标,问能有几个凸四边形 分析:数据规模小,直接暴力枚举,每次四个点判断是否会是凹四边形,条件是有一个点在另外三个点的内部,那么问题转换成判断一个点d是否在三角形abc内 ...
- 172. Factorial Trailing Zeroes(阶乘中0的个数 数学题)
Given an integer n, return the number of trailing zeroes in n!. Example 1: Input: 3 Output: 0 Explan ...
- ACM学习历程—FZU2148 Moon Game(计算几何)
Moon Game Description Fat brother and Maze are playing a kind of special (hentai) game in the clearl ...
- Problem A: 踢罐子 解题报告
Problem A: 踢罐子 Description 平面上有\(n\)个点,其中任意2点不重合,任意3点不共线. 我们等概率地选取一个点A,再在剩下的\(n-1\)个点中等概率地选取一个点B,再在剩 ...
- fzu Problem 2148 Moon Game(几何 凸四多边形 叉积)
题目:http://acm.fzu.edu.cn/problem.php?pid=2148 题意:给出n个点,判断可以组成多少个凸四边形. 思路: 因为n很小,所以直接暴力,判断是否为凸四边形的方法是 ...
- ACM: FZU 2148 Moon Game - 海伦公式
FZU 2148 Moon Game Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64 ...
- 数论 - Moon Game
Fat brother and Maze are playing a kind of special (hentai) game in the clearly blue sky which we ca ...
随机推荐
- 常用Java集合类总结
此文已由作者赵计刚授权网易云社区发布. 欢迎访问网易云社区,了解更多网易技术产品运营经验. 7.1.List(允许重复元素) ArrayList: 底层数据结构:Object[] 在查询(get).遍 ...
- Jmeter_前端RSA加密下的登陆模拟_引用js文件实现
版权声明:本文为博主原创文章,未经博主允许不得转载. 在一次项目实战中,前端登录使用了RSA加密,使用LoadRunner压测的第一步,就是模拟用户登录,可惜loadRunner11并不能录制前端的加 ...
- 转---移动端 h5开发相关内容总结——CSS篇
作者:伯乐在线专栏作者 - zhiqiang21 如有好文章投稿,请点击 → 这里了解详情 如需转载,发送「转载」二字查看说明 1.移动端开发视窗口的添加 h5端开发下面这段话是必须配置的 meta ...
- JAVA多线程下载
package com.jan.test; import java.io.File; import java.io.IOException; import java.io.RandomAccessFi ...
- web socket 入门
WebSocket是HTML5开始提供的一种在单个 TCP 连接上进行全双工通讯的协议,其优雅地解决了以往web服务器不能向web客户端实时推送消息的问题. 在浏览器js环境中,创建一个websock ...
- XAMPP中MySQL无法启动解决办法
如图 问题出在mysql的路径上,其实报错已经讲得听清楚了 预期应该是这样 结果却是这样 所以解决办法当然就是修改这个路径,出现这个报错原因大多因为之前电脑装过mysql,所以电脑默认启动是原来的my ...
- Fiddler抓包连接失败502的解决方法
本篇用户记录,在用Fiddler遇到过的坑,首先, 先上图,遇到的问题,提示主机连接失败.只是打开Fiddler,不会报这个问题,只有当Fiddler和火狐浏览器一起启动的时候,才会报这个错. 尝试去 ...
- 【rocketMQ】1、搭建MQ服务器,生产一个订单与消费一个订单
1. 先解压 2. maven编译安装.(注意虚拟机采用nat网络模式,需要联网) mvn -Prelease-all -DskipTests clean install -U 启动nameser节点 ...
- vue教程2-07 自定义指令
vue教程2-07 自定义指令 自定义指令: 一.属性: Vue.directive(指令名称,function(参数){ this.el -> 原生DOM元素 }); <div v-re ...
- odoo开发 相关知识点
(1)导入模块可以起别名: (2) 新的模型前端要调用显示有关联的另一个模型的相关字段 (3) 传递上下文 搜索视图打开默认按照接收的参数搜索显示: 发起端视图 上下文写法: 目标端 触发显示,搜索视 ...