Acwing周赛42 (KMP,偷偷拿字符串哈希水过去了)

10 篇文章 0 订阅

题目
题意: 分别给出长度为n和m的字符串a、b,有q次询问,询问在字符串a的[l,r]中出现了多少次b。
思路: KMP匹配一下,然后维护一下前缀和,即可O(1)查询。
时间复杂度: O(n+q)
代码:

// Problem: 出现次数
// Contest: AcWing
// URL: https://www.acwing.com/problem/content/4315/
// Memory Limit: 256 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 2e5+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
int n,m,k,T;
int q;
char s[1002];
char p[1002];
int ne[1002];
int a[1002];
void solve()
{
   ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
   cin>>n>>m>>q;
   cin>>(s+1); cin>>(p+1);
   for(int i=2,j=0;i<=m;++i)
   {
   	  while(j && p[i] != p[j+1]) j = ne[j];
   	  if(p[i] == p[j+1]) j++;
   	  ne[i] = j;
   }
   for(int i=1,j=0;i<=n;++i)
   {
   	  while(j && s[i] != p[j+1]) j = ne[j];
   	  if(s[i] == p[j+1]) j++;
   	  if(j == m)
   	  {
   	  	 a[i-j+1] = 1;
   	  	 j = ne[j];
   	  }
   }
   // fir(i,1,n) cout<<i<<":"<<a[i]<<endl;
   for(int i=1;i<=n;++i) a[i] += a[i-1];
   while(q--)
   {	
   	  int l,r; cin>>l>>r;
   	  if(r-l+1 < m) {cout<<0<<"
"; continue;}
   	  cout<<a[r-m+1] - a[l-1]<<"
";
   }
}
signed main(void)
{  
   T = 1;
   // OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

总结

写到这里也结束了,在文章最后放上一个小小的福利,以下为小编自己在学习过程中整理出的一个关于 java开发 的学习思路及方向。从事互联网开发,最主要的是要学好技术,而学习技术是一条慢长而艰苦的道路,不能靠一时激情,也不是熬几天几夜就能学好的,必须养成平时努力学习的习惯,更加需要准确的学习方向达到有效的学习效果。

由于内容较多就只放上一个大概的大纲,需要更及详细的学习思维导图的 点击我的Gitee获取
还有 高级java全套视频教程 java进阶架构师 视频+资料+代码+面试题!

全方面的java进阶实践技术资料,并且还有技术大牛一起讨论交流解决问题。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值