Codeforces 1017E The Supersonic Rocket 凸包,计算几何,字符串,KMP
原文链接https://www.cnblogs.com/zhouzhendong/p/CF1017E.html
题目传送门 - CF1017E
题意
给定两个点集,并构成两个凸包。
问这两个凸包是否可以通过旋转和平移重合。
每一个凸包的点数 $\leq 10^5$ 。
题解
建两个凸包,注意一下,建出来的凸包要避免凸包外围连续三点共线。
然后把每一个凸包的边长、拐角信息记录下来,形成一个序列,判断两个凸包对应的序列是否循环同构即可。注意一下拐角信息不能只存叉积。
例如赛后加上的第 55 组数据: 4 0 0 1 0 1 1 2 1 0 1 1 1 2 0 1 0
判断字符串循环同构:倍长一个串,另一个在上面 kmp 。
注意一下并不是匹配了就可以了,要保证匹配的位置为一个信息块的结尾。
代码
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N=600005;
LL read(){
LL x=0;
char ch=getchar();
while (!isdigit(ch))
ch=getchar();
while (isdigit(ch))
x=(x<<1)+(x<<3)+ch-48,ch=getchar();
return x;
}
int n,m;
struct Point{
int x,y;
}p1[N],p2[N],O;
LL sqr(int x){
return 1LL*x*x;
}
LL dis(Point a,Point b){
return sqr(a.x-b.x)+sqr(a.y-b.y);
}
LL cross(Point a,Point b,Point c){
return 1LL*(b.x-a.x)*(c.y-a.y)-1LL*(c.x-a.x)*(b.y-a.y);
}
bool cmp_O(Point a,Point b){
if (a.y==b.y)
return a.x<b.x;
return a.y<b.y;
}
bool cmp_Angle(Point a,Point b){
LL c=cross(O,a,b);
if (c==0)
return dis(O,a)<dis(O,b);
return c>0;
}
int st[N],top;
int Make_Convex(Point P[],int n){
for (int i=2;i<=n;i++)
if (!cmp_O(P[1],P[i]))
swap(P[1],P[i]);
O=P[1];
sort(P+2,P+n+1,cmp_Angle);
top=0;
st[++top]=1,st[++top]=2;
for (int i=3;i<=n;i++){
while (top>=2&&cross(P[st[top-1]],P[st[top]],P[i])<=0)
top--;
st[++top]=i;
}
for (int i=1;i<=top;i++)
P[i]=P[st[i]];
return top;
}
LL s1[N],s2[N];
int Fail[N];
void KMP(LL s[],int n){
Fail[0]=Fail[1]=0;
for (int i=2;i<=n;i++){
int k=Fail[i-1];
while (k>0&&s[i]!=s[k+1])
k=Fail[k];
Fail[i]=k+(s[k+1]==s[i]?1:0);
}
}
bool check(){
int k=0;
for (int i=1;i<=n*6;i++){
while (k>0&&s2[k+1]!=s1[i])
k=Fail[k];
if (s2[k+1]==s1[i])
k++;
if (k>=m*3){
if (i%3==0)
return 1;
else
k=Fail[k];
}
}
return 0;
}
int main(){
n=read(),m=read();
for (int i=1;i<=n;i++)
p1[i].x=read(),p1[i].y=read();
for (int i=1;i<=m;i++)
p2[i].x=read(),p2[i].y=read();
n=Make_Convex(p1,n);
m=Make_Convex(p2,m);
for (int i=1;i<=n;i++){
s1[i*3-2]=dis(p1[i],p1[i%n+1]);
s1[i*3-1]=cross(p1[i],p1[i%n+1],p1[(i+1)%n+1]);
s1[i*3]=dis(p1[i],p1[(i+1)%n+1]);
}
for (int i=1;i<=m;i++){
s2[i*3-2]=dis(p2[i],p2[i%m+1]);
s2[i*3-1]=cross(p2[i],p2[i%m+1],p2[(i+1)%m+1]);
s2[i*3]=dis(p2[i],p2[(i+1)%m+1]);
}
for (int i=1;i<=n*3;i++)
s1[i+n*3]=s1[i];
KMP(s2,m*3);
puts(n==m&&check()?"YES":"NO");
return 0;
}
Codeforces 1017E The Supersonic Rocket 凸包,计算几何,字符串,KMP的更多相关文章
- CodeForces - 1017E :The Supersonic Rocket (几何+KMP,判定凸包是否同构)
After the war, the supersonic rocket became the most common public transportation. Each supersonic r ...
- hdu 5510 Bazinga(字符串kmp)
Bazinga Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
- hdu1686字符串kmp
The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e ...
- 模板—字符串—KMP(单模式串,单文本串)
模板—字符串—KMP(单模式串,单文本串) Code: #include <cstdio> #include <cstring> #include <algorithm& ...
- E. The Supersonic Rocket Codeforces Round #502 (in memory of Leopoldo Taravilse, Div. 1 + Div. 2)
http://codeforces.com/contest/1017/problem/E 凸包模板+kmp #include <cstdio> #include <cstdlib&g ...
- Codeforces Round #502 (in memory of Leopoldo Taravilse, Div. 1 + Div. 2) E. The Supersonic Rocket
这道题比赛之后被重新加了几个case,很多人现在都过不了了 算法就是先求凸包,然后判断两个凸包相等 我们可以吧凸包序列化为两点距离和角度 角度如果直接拿向量的叉积是不对的,,因为钝角和锐角的叉积有可能 ...
- bzoj 1964: hull 三维凸包 计算几何
1964: hull 三维凸包 Time Limit: 1 Sec Memory Limit: 64 MBSubmit: 54 Solved: 39[Submit][Status][Discuss ...
- [codeforces/gym/101350/L]维护“凸包”
题目链接:http://codeforces.com/gym/101350/problems 给定n个墙,每个墙有一个高度,要支持动态修改墙的高度和查询这个“容器”能盛多少水. (队友)观察发现,能盛 ...
- HDU 1392 Surround the Trees(凸包*计算几何)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1392 这里介绍一种求凸包的算法:Graham.(相对于其它人的解释可能会有一些出入,但大体都属于这个算 ...
随机推荐
- poll & select
//todo /* * copied from http://devarea.com/linux-io-multiplexing-select-vs-poll-vs-epoll/#.W1GZ0vkzZ ...
- http请求在ie中F12查看显示已挂起
页面有解析和运算工作之后 http新请求在ie中F12查看显示已挂起,http post ,请求返回少量数据
- Android 设备的CPU类型(通常称为”ABIs”)
armeabiv-v7a: 第7代及以上的 ARM 处理器.2011年15月以后的生产的大部分Android设备都使用它. arm64-v8a: 第8代.64位ARM处理器,很少设备,三星 Galax ...
- tensorflow中文教程
飞机票--->走你~~~ 飞机票 http://blog.csdn.net/lenbow/article/details/52152766
- Confluence 6 新安装配置数据库字符集编码
Confluence 和你的数据库必须配置使用相同的字符集. Confluence 使用 UTF-8 字符集编码,所以你的数据库也必须配置为使用 UTF-8 (或者与 UTF-8 相同的编码,例如在 ...
- Confluence 6 找到你的支持识别代码(SEN)
你可以在下面 3 个地方找到你的 SEN 代码: 在 Confluence 中,进入 > 基本配置(General Configuration) > 许可证详细(License Deta ...
- npm install Install error: Unexpected token < in JSON at position 35问题解决
解决方案 rm package-lock.json worked.
- AD9361框图
1. Fir滤波器的阶数为64或128 而内插或抽取因子为:1.2或4. HB1和HB2的内插或抽取因子为1或2而HB3的因子为1.2或3 BB_LPF为:三阶巴特沃斯低通滤波器,3dB点频率可编程, ...
- 团队开发工具git常用命令
Git 常用命令 Git配置 git config --global user.name "storm" git config --global user.email " ...
- Laravel5使用QQ邮箱发送邮件配置
在.env文件中设置如下MAIL_DRIVER=smtpMAIL_HOST=smtp.qq.comMAIL_PORT=465MAIL_USERNAME=00000000000@qq.comMAIL_P ...