POJ-2002 Squares---绕点旋转+Hash
题目链接:
https://vjudge.net/problem/POJ-2002
题目大意:
有一堆平面散点集,任取四个点,求能组成正方形的不同组合方式有多少。
相同的四个点,不同顺序构成的正方形视为同一正方形。
解题思路:
直接四个点四个点地枚举肯定超时的,不可取。
普遍的做法是:先枚举两个点(这两个点是正方形的一条边),通过数学公式得到另外2个点,使得这四个点能够成正方形。然后检查散点集中是否存在计算出来的那两个点,若存在,说明有一个正方形。
但这种做法会使同一个正方形按照不同的顺序被枚举了四次,因此最后的结果要除以4.
已知点(x1, y1),(x2, y2),可求出下面两种可能
求出另外两个点之后直接在不在hash表中(之前用二分一直超时)
关于点(x1, y1)绕点(x0, y0)逆时针旋转β度得到(x2, y2)的公式:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<algorithm>
#include<vector>
#define lowbot(i) (i&(-i))
//#define Rotate(a, b) node(a.x + a.y - b.y, a.y + b.x - a.x)
using namespace std;
typedef long long ll;
const int maxn = + ;
const int mod = ;
struct node
{
int x, y;
node(){}
node(int x, int y):x(x), y(y){}
};
struct hashtable
{
int x, y;
hashtable * next;
hashtable()
{
next = ;
}
};
hashtable * Hash[mod];
void Hash_Insert(node a)
{
int key = (a.x * a.x + a.y * a.y) % mod;
if(!Hash[key])
{
hashtable * p = new hashtable;
p->x = a.x;
p->y = a.y;
Hash[key] = p;
}
else
{
hashtable *p = Hash[key];
while(p->next)p=p->next;
hashtable* temp = new hashtable;
temp->x = a.x;
temp->y = a.y;
p->next = temp;
}
}
bool Find(node a)
{
int key = (a.x * a.x + a.y * a.y) % mod;
if(!Hash[key])return false;
else
{
hashtable * temp = Hash[key];
while(temp)
{
if(temp->x == a.x && temp->y == a.y)
return true;
temp = temp->next;
}
}
return false;
}
node a[maxn]; node Rotate(node a, node b)//点b绕着点a逆时针旋转90度的坐标
{
int x = (b.x - a.x) * - (b.y - a.y) * + a.x;
int y = (b.x - a.x) * + (b.y - a.y) * + a.y;
return node(x, y);
} int main()
{
int n;
while(scanf("%d", &n) != EOF && n)
{
memset(Hash, , sizeof(Hash));
for(int i = ; i <= n; i++)
{
scanf("%d%d", &a[i].x, &a[i].y);
Hash_Insert(a[i]);
}
int ans = ;
node x, y;
for(int i = ; i <= n; i++)
{
for(int j = i + ; j <= n; j++)
{
x = Rotate(a[i], a[j]);
y = Rotate(x, a[i]);
if(Find(x) && Find(y))ans++;
//cout<<i<<" "<<j<<" "<<x.x<<" "<<x.y<<" "<<y.x<<" "<<y.y<<endl;
x = Rotate(a[j], a[i]);
y = Rotate(x, a[j]);
if(Find(x) && Find(y))ans++;
}
}
printf("%d\n", ans / );
}
return ;
}
POJ-2002 Squares---绕点旋转+Hash的更多相关文章
- POJ 2002 Squares【值得摸索的一道二分+点旋转】
id=2002">Squares 很好的一道二分,事实上本来我是没有思路的,看了基神的题解之后才似乎明确了点. 题意:给出最多有1000个点,问这些点能够组成多少个正方形 分析:先想想 ...
- POJ 2002 Squares 数学 + 必须hash
http://poj.org/problem?id=2002 只能说hash比二分快很多.随便一个hash函数都可以完爆二分. 判断是否存在正方形思路如下: 1.枚举任意两个点,作为正方形的一条边,那 ...
- POJ 2002 Squares [hash]
Squares Time Limit: 3500MS Memory Limit: 65536K Total Submissions: 16631 Accepted: 6328 Descript ...
- POJ 2002 Squares 哈希
题目链接: http://poj.org/problem?id=2002 #include <stdio.h> #include <string.h> ; struct Has ...
- poj 2002 Squares 几何二分 || 哈希
Squares Time Limit: 3500MS Memory Limit: 65536K Total Submissions: 15137 Accepted: 5749 Descript ...
- POJ 2002 Squares 解题报告(哈希 开放寻址 & 链式)
经典好题. 题意是要我们找出所有的正方形.1000点,只有枚举咯. 如图,如果我们知道了正方形A,B的坐标,便可以推测出C,D两点的坐标.反之,遍历所有点作为A,B点,看C,D点是否存在.存在的话正方 ...
- POJ 2002 Squares 几何, 水题 难度: 0
题目 http://poj.org/problem?id=2002 题意 已知平面内有1000个点,所有点的坐标量级小于20000,求这些点能组成多少个不同的正方形. 思路 如图,将坐标按照升序排列后 ...
- poj 2002(好题 链式hash+已知正方形两点求另外两点)
Squares Time Limit: 3500MS Memory Limit: 65536K Total Submissions: 18493 Accepted: 7124 Descript ...
- POJ 2002 Squares
二分.... Squares Time Limit: 3500MS Memory Limit: 65536K Total Submissions: 14530 Accepted: 5488 Descr ...
- No.5 - 纯 CSS 制作绕中轴旋转的立方体
body{ background-color: #000; margin:; padding:; } main{ perspective: 800px; } .cube{ transform-styl ...
随机推荐
- sshd服务及系统文件传输
一.sshd 简介 sshd= secure shell 可以通过网络在主机中开机shell的服务 客户端软件 sshd 连接方式: ssh username@ip ##文本模式的链 ...
- Laravel5.1接收json数据
<?php namespace App\Http\Controllers;use Illuminate\Routing\Controller as BaseController; use Ill ...
- Problem05 判断分数等级
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示. 程序分析:(a>b)?a:b这是条件运算符的基本例子. impo ...
- JOIN 和 NULL
NULL值得数据出现在数据库发展的最初阶段的确给开发和使用者带来了很大的便利,这是因为它为我们节省了太多的磁盘空间,而且在那个年代磁盘是相当昂贵的.但是随着科技的发展,硬件系统的改进突飞猛进,NULL ...
- VUE验证器哪家强? VeeValidate absolutely!
VUE验证器哪家强? VeeValidate absolutely! vee-validate表单验证用法 github地址:https://github.com/baianat/vee-valida ...
- python pd.read_csv/pd.read_table参数详解
- C#中 计时器用法 运行时间
有时候我们会需要计算某段代码运行的时间 比如一个sql查询,记录一段代码所花费的时间等等代码如下: System.Diagnostics.Stopwatch watch = new System.Di ...
- 云计算&大数据相关知识
1.极客学院云计算&大数据总链接:http://wiki.jikexueyuan.com/list/cloud/ 一.NSQ相关参考资料: 1.极客学院NSQ指南:http://wiki.ji ...
- node Error: Could not locate the bindings file. Tried:解决
问题描述: Error: Could not locate the bindings file. Tried: → C:\code\xxx\node_modules\deasync\build\dea ...
- EF删除数据
1.方法一,面向对象 using (MyDbContent content = new MyDbContent()) { content.Entry<UserInfo>(model).St ...