ACM/ICPC 之 计算几何入门-叉积-to left test(POJ2318-POJ2398)
POJ2318
本题需要运用to left test不断判断点处于哪个分区,并统计分区的点个数(保证点不在边界和界外),用来做叉积入门题很合适
//计算几何-叉积入门题
//Time:157Ms Memory:828K
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
#define MAXN 5005
struct Point{
int x,y;
Point(int xx=0, int yy=0):x(xx), y(yy){}
friend bool operator < (Point p1, Point p2){
return (p1.x < p2.x) || (p1.x == p2.x && p1.y < p2.y);
}
}ul, lr, p[2*MAXN], toy[MAXN];
int n, m;
int num[MAXN];
int cross(Point a, Point b, Point s)//叉积-(s在ab左侧返回>0)
{
return (a.x-s.x) * (b.y-s.y) - (a.y-s.y) * (b.x-s.x);
}
int main()
{
//freopen("in.txt", "r", stdin);
while(scanf("%d", &n), n)
{
memset(num, 0, sizeof(num));
scanf("%d%d%d%d%d", &m, &ul.x, &ul.y, &lr.x, &lr.y);
for(int i=0; i<n; i++)
{
int u,l;
scanf("%d%d", &u,&l);
p[2*i] = Point(u, ul.y);
p[2*i+1] = Point(l, lr.y);
}
p[2*n] = Point(lr.x, ul.y);
p[2*n+1] = Point(lr.x, lr.y);
for(int i=0; i<m; i++)
scanf("%d%d", &toy[i].x, &toy[i].y);
sort(toy, toy+m);
int cur = 0;
for(int i=0; i<m; i++)
{
for(int j=cur; j<=n; j++)
{
if(cross(p[j*2+1], p[j*2], toy[i]) > 0) //to left test
{
num[j]++; break;
}
}
while(toy[i].x > max(p[cur*2+1].x, p[cur*2].x))
cur++;
}
for(int i = 0; i <= n;i++)
printf("%d: %d\n", i, num[i]);
printf("\n");
}
return 0;
}
POJ2398
题意同上,不同在于线段是随机的(需对线段排序),且要求输出为相同统计数的格子数量
//计算几何-叉积入门题-需对线段排序
//题意同POJ2318
//Time:0Ms Memory:724K
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
#define MAXN 1005
struct Point{
int x,y;
Point(int xx=0, int yy=0):x(xx), y(yy){}
friend bool operator < (Point p1, Point p2){
return (p1.x < p2.x) || (p1.x == p2.x && p1.y < p2.y);
}
}ul, lr, toy[MAXN];
struct Line{
int a,b,c,d;
Line(int aa=0, int bb=0, int cc=0, int dd=0):a(aa),b(bb),c(cc),d(dd){}
friend bool operator < (Line l1, Line l2){
return (l1.a < l2.a) || (l1.a == l2.a && l1.c < l2.c);
}
}line[MAXN];
int n, m;
int num[MAXN], cnt[MAXN];
int cross(Point a, Point b, Point s)//叉积-(s在ab左侧返回>0)
{
return (a.x-s.x) * (b.y-s.y) - (a.y-s.y) * (b.x-s.x);
}
int main()
{
//freopen("in.txt", "r", stdin);
while(scanf("%d", &n), n)
{
memset(num, 0, sizeof(num));
memset(cnt, 0, sizeof(cnt));
scanf("%d%d%d%d%d", &m, &ul.x, &ul.y, &lr.x, &lr.y);
for(int i=0; i<n; i++)
{
int u,l;
scanf("%d%d", &u,&l);
line[i] = Line(u, ul.y, l, lr.y);
}
line[n] = Line(lr.x, ul.y, lr.x, lr.y);
sort(line, line+n+1);
for(int i=0; i<m; i++)
scanf("%d%d", &toy[i].x, &toy[i].y);
sort(toy, toy+m);
int cur = 0;
for(int i=0; i<m; i++)
{
for(int j=cur; j<=n; j++)
{
if(cross(Point(line[j].c, line[j].d), Point(line[j].a,line[j].b), toy[i]) > 0) //to left test
{
num[j]++; break;
}
}
while(toy[i].x > max(line[cur].a, line[cur].c))
cur++;
}
for(int i=0; i<=n; i++)
cnt[num[i]]++;
printf("Box\n");
for(int i = 1; i <= n;i++)
if(cnt[i]) printf("%d: %d\n", i, cnt[i]);
}
return 0;
}
ACM/ICPC 之 计算几何入门-叉积-to left test(POJ2318-POJ2398)的更多相关文章
- ACM/ICPC 之 网络流入门-EK算法(参考模板)(POJ1273)
基于残留网络与FF算法的改进-EK算法,核心是将一条边的单向残留容量的减少看做反向残留流量的增加. //网络流 //EK算法 //Time:16Ms Memory:348K #include<i ...
- ACM/ICPC 之 网络流入门-Ford Fulkerson与SAP算法(POJ1149-POJ1273)
第一题:按顾客访问猪圈的顺序依次构图(顾客为结点),汇点->第一个顾客->第二个顾客->...->汇点 //第一道网络流 //Ford-Fulkerson //Time:47M ...
- 【转】lonekight@xmu·ACM/ICPC 回忆录
转自:http://hi.baidu.com/ordeder/item/2a342a7fe7cb9e336dc37c89 2009年09月06日 星期日 21:55 初识ACM最早听说ACM/ICPC ...
- 2015 ACM / ICPC 亚洲区域赛总结(长春站&北京站)
队名:Unlimited Code Works(无尽编码) 队员:Wu.Wang.Zhou 先说一下队伍:Wu是大三学长:Wang高中noip省一:我最渣,去年来大学开始学的a+b,参加今年区域赛之 ...
- 训练报告 (2014-2015) 2014, Samara SAU ACM ICPC Quarterfinal Qualification Contest
Solved A Gym 100488A Yet Another Goat in the Garden B Gym 100488B Impossible to Guess Solved C Gym ...
- POJ P2318 TOYS与POJ P1269 Intersecting Lines——计算几何入门题两道
rt,计算几何入门: TOYS Calculate the number of toys that land in each bin of a partitioned toy box. Mom and ...
- 2014嘉杰信息杯ACM/ICPC湖南程序设计邀请赛暨第六届湘潭市程序设计竞赛
比赛链接: http://202.197.224.59/OnlineJudge2/index.php/Contest/problems/contest_id/36 题目来源: 2014嘉杰信息杯ACM ...
- ACM/ICPC 之 BFS(离线)+康拓展开(TSH OJ-玩具(Toy))
祝大家新年快乐,相信在新的一年里一定有我们自己的梦! 这是一个简化的魔板问题,只需输出步骤即可. 玩具(Toy) 描述 ZC神最擅长逻辑推理,一日,他给大家讲述起自己儿时的数字玩具. 该玩具酷似魔方, ...
- ACM ICPC 2015 Moscow Subregional Russia, Moscow, Dolgoprudny, October, 18, 2015 G. Garden Gathering
Problem G. Garden Gathering Input file: standard input Output file: standard output Time limit: 3 se ...
随机推荐
- 【笔记】JS基础一
名词解释 ECMAScript 翻译器,解释器 DOM 文档对象模型 Document Object Model 例如 document BOM 浏览器对象模型 Browser Object Mode ...
- NC 销售订单
主表:so_sale,主键:csaleid 子表1:so_saleorder_b 主键:corder_bid 子表2:so_saleexecute 主键:csale_bid 要求子表1和子表2 主键相 ...
- Quartz定时任务
spring多个定时任务quartz配置 例子1: biz-quartz-context.xml配置 <?xml version="1.0" encoding="U ...
- ssh 公钥登陆的问题
我在A,B两台机器上面使用无密码登陆的方式 在A主机上面生成公钥 复制到了B主机的authorized_keys文件里面 发现还是要输入密码 问题1 权限问题 .ssh 目录必须是 700 auth ...
- pyMysql
本篇对于Python操作MySQL主要使用两种方式: 原生模块 pymsql ORM框架 SQLAchemy pymsql pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb ...
- phpcms二次开发中无法获取SESSION的值
今天在在phpcms开发留言板用到验证码,提交数据,后台无法$_SESSION['code']无法获取验证码值,也无法打印var_dump($_SESSION)值,我们只需要在文件头部添加如下代码: ...
- Codeforces Round #388 (Div. 2)
# Name A Bachgold Problem standard input/output 1 s, 256 MB x6036 B Parallelogram is Back s ...
- Ubuntu安装RobotFramework
安装Python Ubuntu默认已安装 安装pip wget https://bootstrap.pypa.io/get-pip.py python get-pip.py 安装RobotFramew ...
- RP
关键印象 Base note 任务(task):一段代码. 进程(process):程序的实体,一个正在运行中的可执行文件.拥有独立的虚拟内存空间和系统资源,包括端口权限. 线程(thread):进程 ...
- mysql定时任务
查看event是否开启: show variables like '%sche%'; 将事件计划开启: set global event_scheduler=1; 关闭事件任务: alter even ...