既然询问的长度是确定的,那么我们可以将所有长度为K的字串弄个哈希值出来,这样字串存在性=>哈希值存在性。

自然上溢哈希,base=107比较不错。

序列长度n=>n-K+1

询问区间[x,y]=>[x,y-K+1]

注意特判x是否>y-K+1

然后我们注意到没有修改,于是将哈希值离散化后,莫队大法好。

#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
typedef unsigned long long ull;
int f,C;
inline void R(int &x){
C=0;f=1;
for(;C<'0'||C>'9';C=getchar())if(C=='-')f=-1;
for(x=0;C>='0'&&C<='9';C=getchar())(x*=10)+=(C-'0');
x*=f;
}
#define N 200001
#define seed 107
ull seedK=1;
int n,m,K,a[N<<1],c[N],en,en2,X;
int num[N],b[N<<1],sum=1;
bool anss[N];
struct Point{ull v;int p;}t[N<<1];
struct Ask{int l,r,x,p;}Q[N];
bool operator < (const Point &a,const Point &b){return a.v<b.v;}
bool operator < (const Ask &a,const Ask &b)
{return num[a.l]!=num[b.l] ? num[a.l]<num[b.l] : a.r<b.r;}
void Mo_Make_Block()
{
int sum=1,sz=sqrt(n); if(!sz) sz=1;
for(;sum*sz<n;++sum)
{
int r=sum*sz;
for(int i=(sum-1)*sz+1;i<=r;++i) num[i]=sum;
}
for(int i=(sum-1)*sz+1;i<=n;++i) num[i]=sum;
}
int main()
{
R(n); R(m); R(K);
for(int i=1;i<=K;++i)
seedK=seedK*seed;
for(int i=1;i<=n;++i) R(c[i]);
ull hs=0;
for(int i=1;i<=K;++i) hs=hs*seed+(ull)c[i];
for(int i=K+1;i<=n;++i)
{
t[++en].v=hs; t[en].p=en;
hs=hs*seed+(ull)c[i];
hs-=c[en]*seedK;
}
t[++en].v=hs; t[en].p=en;
int Record=en;
for(int i=1;i<=m;++i)
{
R(Q[i].l); R(Q[i].r);
Q[i].p=i;
Q[i].r=Q[i].r-K+1;
hs=0;
for(int j=1;j<=K;++j)
{
R(X);
hs=hs*seed+(ull)X;
}
t[++en].v=hs; t[en].p=en;
}
sort(t+1,t+en+1);
a[t[1].p]=++en2;
for(int i=2;i<=en;++i)
{
if(t[i].v!=t[i-1].v) ++en2;
a[t[i].p]=en2;
}
en=Record;
for(int i=1;i<=m;++i) Q[i].x=a[++en];
Mo_Make_Block();
sort(Q+1,Q+m+1);
for(int i=Q[1].l;i<=Q[1].r;++i) ++b[a[i]];
if(Q[1].l<=Q[1].r) anss[Q[1].p]=b[Q[1].x];
else anss[Q[1].p]=0;
for(int i=2;i<=m;++i)
{
if(Q[i].l<Q[i-1].l) for(int j=Q[i-1].l-1;j>=Q[i].l;--j) ++b[a[j]];
else for(int j=Q[i-1].l;j<Q[i].l;++j) --b[a[j]];
if(Q[i].r<Q[i-1].r) for(int j=Q[i-1].r;j>Q[i].r;--j) --b[a[j]];
else for(int j=Q[i-1].r+1;j<=Q[i].r;++j) ++b[a[j]];
if(Q[i].l<=Q[i].r) anss[Q[i].p]=b[Q[i].x];
else anss[Q[i].p]=0;
}
for(int i=1;i<=m;++i) puts(anss[i]?"No":"Yes");
return 0;
}

最新文章

  1. docker学习(7) docker-compose使用示例
  2. 2014 todo list
  3. mysql 导入导出sql文件
  4. eclipse 新建项目下后.metadata\.plugins的文件夹解释和如何保存自己的特定工程设置
  5. VS2010 win32项目windows窗体程序 向导生成代码解析
  6. jAVA 得到Map价值
  7. UIImageView 浅析
  8. el5,6,7的ntpdate服务
  9. JavaWeb项目架构之Redis分布式日志队列
  10. python笔记2——关于列表的使用
  11. Open Distro for Elasticsearch – How Different Is It?
  12. 大话C#之委托
  13. Adobe Photoshop CC 2019 for Mac(介绍及下载)
  14. php in_array 的一个坑
  15. [CI]CodeIgniter特性 &amp; 结构
  16. python 跨平台获取网卡信息和本机ip地址
  17. jdbc读取百万条数据出现内存溢出的解决办法
  18. python-django开发学习笔记三
  19. Claims-based认证解析
  20. HDU 4635

热门文章

  1. “CNKI 中国知网 PDF 全文下载”油猴脚本在线安装地址
  2. Codeforces Round #524 (Div. 2) D. Olya and magical square
  3. AOP编程的常用实现方式
  4. CentOs7安装JDK/Tomcat/Git/Gradle
  5. bzoj 1996 DP
  6. windows支持applocker的版本
  7. KVM分析报告
  8. Python3安装cx_Oracle连接oracle数据库实操总结
  9. echarts 图表建立步骤
  10. OleDbDataAdapter具体使用11