bzoj 1039 无序运动

计算几何 + AC 自动机.

考虑如果给出两个长度相同的点列,如何判断它们能否匹配.

若点数 $=2$ ,则通过平移,旋转,放缩一定可以匹配.

若点数 $>2$ ,先不考虑翻转,只考虑平移,旋转,放缩这三种操作.

如果任意两条相邻的边的边长之比和夹角都相等,就可以匹配.

为了避免精度问题,边长比可以用边长平方比来表示,夹角可以用叉积与点积之比来表示.

将分子分母,化成既约分数保存,注意夹角比值的分子分母都要保留符号.

将这些信息离散化,就变成了数字串的匹配,用 AC 自动机来计算匹配次数.

再考虑翻转操作,若一个点列不是所有点共线,则它翻转后不能和原来的点列通过平移,旋转,放缩匹配.

将它翻转后再做一次上面的匹配.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
//%std
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
inline int read()
{
int out=0,fh=1;
char jp=getchar();
while ((jp>'9'||jp<'0')&&jp!='-')
jp=getchar();
if (jp=='-')
fh=-1,jp=getchar();
while (jp>='0'&&jp<='9')
out=out*10+jp-'0',jp=getchar();
return out*fh;
}
const int N=2e5+10,M=1.6e6+10,U=(1<<22)-1;
int sgn(int x)
{
return x>0?1:-1;
}
struct v2
{
double x,y;
v2(double x=0,double y=0):x(x),y(y) {}
v2 operator + (const v2 &rhs) const
{
return v2(x+rhs.x,y+rhs.y);
}
v2 operator - (const v2 &rhs) const
{
return v2(x-rhs.x,y-rhs.y);
}
v2 operator * (const double &k) const
{
return v2(k*x,k*y);
}
int modulus()
{
return x*x+y*y;
}
};
int Dot(v2 A,v2 B)
{
return A.x*B.x+A.y*B.y;
}
int Cross(v2 A,v2 B)
{
return A.x*B.y-A.y*B.x;
}
int n,m,ans[M],len[M],l[M],cnt,all[M];
struct Info
{
int a,b,c,d;
Info() {}
Info(int A,int B,int C,int D)
{
int g=__gcd(A,B);
a=A/g,b=B/g;
if(!C)
c=0,d=sgn(D);
else if(!D)
d=0,c=sgn(C);
else
{
g=__gcd(abs(C),abs(D));
c=C/g,d=D/g;
}
}
bool operator <= (const Info &rhs) const
{
if(a!=rhs.a)
return a<rhs.a;
if(b!=rhs.b)
return b<rhs.b;
if(c!=rhs.c)
return c<rhs.c;
return d<=rhs.d;
}
bool operator < (const Info &rhs) const
{
if(a!=rhs.a)
return a<rhs.a;
if(b!=rhs.b)
return b<rhs.b;
if(c!=rhs.c)
return c<rhs.c;
return d<rhs.d;
}
bool operator != (const Info &rhs) const
{
return (a!=rhs.a) || (b!=rhs.b) || (c!=rhs.c) || (d!=rhs.d);
}
} pool[M];
bool cmp(const int &x,const int &y)
{
return pool[x]<pool[y];
}
int calc(const Info &x)
{
int l=1,r=cnt,mid,t=0;
while(l<=r)
{
mid=(l+r)>>1;
if(pool[all[mid]]<=x)
t=mid,l=mid+1;
else
r=mid-1;
}
if(!t)
return 0;
if(pool[all[t]]!=x)
return 0;
return t;
}
int tot,f[M],q[M],tag[M];
int head[U+1],G[M],ecnt;
struct E
{
int x,y,z,nx;
E() {} E(int _x,int _y,int _z,int _nx)
{
x=_x,y=_y,z=_z,nx=_nx;
}
} e[M];
struct S
{
int y,z,nx;
S() {} S(int _y,int _z,int _nx)
{
y=_y,z=_z,nx=_nx;
}
} s[M];
int son(int x,int y)
{
int u=(x<<8|y)&U;
for(int p=head[u]; p; p=e[p].nx)
if(e[p].x==x && e[p].y==y)
return e[p].z;
e[++ecnt]=E(x,y,++tot,head[u]);
head[u]=ecnt;
s[ecnt]=S(y,tot,G[x]);
G[x]=ecnt;
return tot;
}
int ask(int x,int y)
{
int u=(x<<8|y)&U;
for(int p=head[u]; p; p=e[p].nx)
if(e[p].x==x&&e[p].y==y)
return e[p].z;
return 0;
}
void solve()
{
int h=0,t=0,x,y,z,k;
f[0]=-1;
while(h<=t)
for(int i=G[x=q[h++]]; i; i=s[i].nx)
{
y=s[i].y,q[++t]=z=s[i].z;
if(x)
for(int j=f[x]; ~j; j=f[j])
if((k=ask(j,y)))
{
f[z]=k;
break;
}
}
}
bool oneline[M];
v2 a[N];
int b[N],c[N];
int main()
{
n=read(),m=read();
for(int i=1; i<=m; ++i)
{
int k=read();
len[i]=k;
for(int j=1; j<=k; ++j)
a[j].x=read(),a[j].y=read();
if(k<=2)
continue;
l[i]=cnt+1;
oneline[i]=true;
for(int j=2; j<k; ++j)
{
v2 A=a[j]-a[j-1],B=a[j+1]-a[j];
oneline[i]&=(Cross(A,B)==0);
pool[++cnt]=Info(A.modulus(),B.modulus(),Cross(A,B),Dot(A,B));
}
}
for(int i=1; i<=cnt; ++i)
all[i]=i;
if(cnt>1)
sort(all+1,all+cnt+1,cmp);
for(int i=1; i<=n; ++i)
a[i].x=read(),a[i].y=read();
for(int i=2; i<n; ++i)
{
v2 A=a[i]-a[i-1],B=a[i+1]-a[i];
b[i]=calc(Info(A.modulus(),B.modulus(),Cross(A,B),Dot(A,B)));
c[i]=calc(Info(A.modulus(),B.modulus(),-Cross(A,B),Dot(A,B)));
}
for(int i=1; i<=m; ++i)
if(l[i])
{
int en=l[i]+len[i]-2;
int x,j;
for(x=0,j=l[i]; j<en; ++j)
x=son(x,calc(pool[j]));
l[i]=x;
}
solve();
for(int x=0,i=2; i<n; ++i)
{
while(x && !ask(x,b[i]))
x=f[x];
tag[x=ask(x,b[i])]++;
}
for(int i=tot; i; --i)
tag[f[q[i]]]+=tag[q[i]];
for(int i=1; i<=m; ++i)
if(l[i])
ans[i]+=tag[l[i]];
for(int i=0; i<=tot; ++i)
tag[i]=0;
for(int x=0,i=2; i<n; ++i)
{
while(x && !ask(x,c[i]))
x=f[x];
tag[x=ask(x,c[i])]++;
}
for(int i=tot; i; --i)
tag[f[q[i]]]+=tag[q[i]];
for(int i=1; i<=m; ++i)
if(l[i] && !oneline[i])
ans[i]+=tag[l[i]];
for(int i=1; i<=m; ++i)
if(!l[i])
printf("%d\n",n-len[i]+1);
else
printf("%d\n",ans[i]);
return 0;
}