POJ 2398 Toy Storage(计算几何)
题意:给定一个如上的长方形箱子,中间有n条线段,将其分为n+1个区域,给定m个玩具的坐标,统计每个区域中的玩具个数。
题解:通过斜率判断一个点是否在两条线段之间。
/**
通过斜率比较点是否在两线段之间
*/ #include"iostream"
#include"cstdio"
#include"algorithm"
#include"cstring"
using namespace std;
const int N=1005; struct edgeP //边上的一个点
{
int x1,x2;
}e[N]; struct point
{
int x,y;
}p[N]; int cmp(edgeP a,edgeP b)
{
return a.x1<=b.x1;
} int x1,y1,x2,y2; bool is_z(point e1,point e2) // /型斜线
{
if((e1.y-e2.y)*(e1.x-e2.x)>=0)
return true;
else
return false;
} bool is_f(point e1,point e2) // \型斜线
{
if((e1.y-e2.y)*(e1.x-e2.x)<=0)
return true;
else
return false;
} bool is_inzr(point e1,point e2,point p) // 在/型斜线的右边
{
if((e1.y-e2.y)*(e1.x-e2.x)>=0)
{
if((p.x-e2.x>0)&&(e1.y-e2.y)*(p.x-e2.x)>(p.y-e2.y)*(e1.x-e2.x))
return true;
}
return false;
} bool is_infl(point e1,point e2,point p) // 在\型斜线的左边
{
if((e1.y-e2.y)*(e1.x-e2.x)<=0)
{
if((p.x-e2.x<0)&&(e1.y-e2.y)*(p.x-e2.x)<(p.y-e2.y)*(e1.x-e2.x))
return true;
}
return false;
} bool is_in(point e1,point e2,point e3,point e4,point p) // 点是否在两线内
{
if((is_z(e1,e2)&&is_inzr(e1,e2,p))&&(is_f(e3,e4)&&is_infl(e3,e4,p))) // 点在/.\型两线间
return true;
if((is_z(e1,e2)&&is_inzr(e1,e2,p))&&(is_z(e3,e4)&&!is_inzr(e3,e4,p))) // 点在/./型两线间
return true;
if((is_f(e1,e2)&&!is_infl(e1,e2,p))&&(is_f(e3,e4)&&is_infl(e3,e4,p))) //点在\.\型两线间
return true;
if((is_f(e1,e2)&&!is_infl(e1,e2,p))&&(is_z(e3,e4)&&!is_inzr(e3,e4,p))) //点在\./型两线间
return true;
return false;
} int main()
{
int n,m;
while(cin>>n)
{
if(n==0)
return 0;
e[0].x1=0,e[0].x2=0;
cin>>m>>x1>>y1>>x2>>y2;
for(int i=1;i<=n;i++)
{
scanf("%d%d",&e[i].x1,&e[i].x2);
}
for(int i=0;i<m;i++)
{
scanf("%d%d",&p[i].x,&p[i].y);
}
e[n+1].x1=x2,e[n+1].x2=x2;
sort(e,e+n+2,cmp);
int cnt[N];
memset(cnt,0,sizeof(cnt));
for(int i=0;i<=n;i++)
{
for(int j=0;j<m;j++)
{ point e1,e2;
e1.x=e[i].x1,e1.y=y1;
e2.x=e[i].x2,e2.y=y2;
point e3,e4;
e3.x=e[i+1].x1,e3.y=y1;
e4.x=e[i+1].x2,e4.y=y2;
/*{
cout<<'('<<e1.x<<','<<e1.y<<')'<<" "<<'('<<e2.x<<','<<e2.y<<')'<<endl;
cout<<'('<<e3.x<<','<<e3.y<<')'<<" "<<'('<<e4.x<<','<<e4.y<<')'<<endl;
cout<<'('<<p[j].x<<','<<p[j].y<<')'<<endl;
}*/
if(is_in(e1,e2,e3,e4,p[j]))
{
cnt[i]++;
//cout<<"cnt"<<i<<"++++++++++++++++++++++"<<endl;
}
}
//cout<<"-------------------------------------------"<<endl;
}
/*for(int i=0;i<=n;i++)
{
cout<<cnt[i]<<' ';
}*/
sort(cnt,cnt+n+1);
puts("Box");
int j=cnt[0],count=1;
cnt[n+1]=-10;
for(int i=1;i<=n+1;i++)
{
if(cnt[i]==j)
{
count++;
}
else
{
if(j!=0)
printf("%d: %d\n",j,count);
j=cnt[i];
count=1;
}
}
}
}
Description
Reza's parents came up with the following idea. They put cardboard partitions into the box. Even if Reza keeps throwing his toys into the box, at least toys that get thrown into different partitions stay separate. The box looks like this from the top:
We want for each positive integer t, such that there exists a partition with t toys, determine how many partitions have t, toys.
Input
A line consisting of a single 0 terminates the input.
Output
Sample Input
4 10 0 10 100 0
20 20
80 80
60 60
40 40
5 10
15 10
95 10
25 10
65 10
75 10
35 10
45 10
55 10
85 10
5 6 0 10 60 0
4 3
15 30
3 1
6 8
10 10
2 1
2 8
1 5
5 5
40 10
7 9
0
Sample Output
Box
2: 5
Box
1: 4
2: 1
POJ 2398 Toy Storage(计算几何)的更多相关文章
- poj 2398 Toy Storage(计算几何)
题目传送门:poj 2398 Toy Storage 题目大意:一个长方形的箱子,里面有一些隔板,每一个隔板都可以纵切这个箱子.隔板将这个箱子分成了一些隔间.向其中扔一些玩具,每个玩具有一个坐标,求有 ...
- poj 2398 Toy Storage(计算几何 点线关系)
Toy Storage Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4588 Accepted: 2718 Descr ...
- POJ 2318 TOYS && POJ 2398 Toy Storage(几何)
2318 TOYS 2398 Toy Storage 题意 : 给你n块板的坐标,m个玩具的具体坐标,2318中板是有序的,而2398无序需要自己排序,2318要求输出的是每个区间内的玩具数,而231 ...
- POJ 2398 Toy Storage(计算几何,叉积判断点和线段的关系)
Toy Storage Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 3146 Accepted: 1798 Descr ...
- 2018.07.04 POJ 2398 Toy Storage(二分+简单计算几何)
Toy Storage Time Limit: 1000MS Memory Limit: 65536K Description Mom and dad have a problem: their ch ...
- POJ 2398 - Toy Storage 点与直线位置关系
Toy Storage Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 5439 Accepted: 3234 Descr ...
- 简单几何(点与线段的位置) POJ 2318 TOYS && POJ 2398 Toy Storage
题目传送门 题意:POJ 2318 有一个长方形,用线段划分若干区域,给若干个点,问每个区域点的分布情况 分析:点和线段的位置判断可以用叉积判断.给的线段是排好序的,但是点是无序的,所以可以用二分优化 ...
- 向量的叉积 POJ 2318 TOYS & POJ 2398 Toy Storage
POJ 2318: 题目大意:给定一个盒子的左上角和右下角坐标,然后给n条线,可以将盒子分成n+1个部分,再给m个点,问每个区域内有多少各点 这个题用到关键的一步就是向量的叉积,假设一个点m在 由ab ...
- POJ 2398 Toy Storage (叉积判断点和线段的关系)
题目链接 Toy Storage Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4104 Accepted: 2433 ...
随机推荐
- Python标准模块--built-ins函数
1.Python内置函数 2.Python内置函数举例 2.1 数学运算 abs,计算绝对值: >>> abs(-1) 1 >>> abs(3) 3 round,四 ...
- git 切换远程分支
http://zhidao.baidu.com/link?url=cuqJsL9skJJn5c556zXfP1dgCAOUK37CDXkNIw_sS0YKmvoROTI0HP7-PbKjgs6Lv4X ...
- owner:轻松管理java项目配置
前段时间,一同事说在 github 上“活捉了”一个很有趣的开源项目,它是一个超轻量级的 jar 包,能够帮助你在 java 项目中摒弃样板式的 properties 配置代码,让你轻松自如地管理和使 ...
- ui-router中使用ocLazyLoad和resolve
1.AngularJS按需加载 AngularJS主要应用开发SPA(Single Page Application)项目,所以在小型项目中,services.filters和controllers都 ...
- 设计模式(七): 通过转接头来观察"适配器模式"(Adapter Pattern)
在前面一篇博客中介绍了“命令模式”(Command Pattern),今天博客的主题是“适配器模式”(Adapter Pattern).适配器模式用处还是比较多的,如果你对“适配器模式”理解呢,那么自 ...
- DDD 领域驱动设计-如何 DDD?
注:科比今天要退役了,我是 60 亿分之一,满腹怀念-
- [原创]django+ldap实现统一认证部分二(python-ldap实践)
前言 接上篇文章 [原创]django+ldap实现统一认证部分一(django-auth-ldap实践) 继续实现我们的统一认证 python-ldap 我在sso项目的backend/lib/co ...
- scikit-learn一般实例之六:构建评估器之前进行缺失值填充
本例将会展示对确实值进行填充能比简单的对样例中缺失值进行简单的丢弃能获得更好的结果.填充不一定能提升预测精度,所以请通过交叉验证进行检验.有时删除有缺失值的记录或使用标记符号会更有效. 缺失值可以被替 ...
- JavaWeb_day06_Filter过滤器
本文为博主辛苦总结,希望自己以后返回来看的时候理解更深刻,也希望可以起到帮助初学者的作用. 转载请注明 出自 : luogg的博客园 谢谢配合! day06 request 对象常用方法 respon ...
- html5+jqueryMobile编写App推广注册页
html5+jqueryMobile的组合可以直接开发web版的app,所以用到我当前app中的推广注册页的编写是很恰当的,其实只要你熟悉html4+jquery的组合开发,那么html5+jquer ...