当前位置:   article > 正文

10算法------补题,注意时间复杂度的问题_a. good pairs time limit per test1 second memory l

a. good pairs time limit per test1 second memory limit per test256 megabytes

题的链接:
https://codeforces.com/group/mey3UXMrvB/contest/313754/problem/B

B. Segment Occurrences
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given two strings s and t, both consisting only of lowercase Latin letters.

The substring s[l…r] is the string which is obtained by taking characters sl,sl+1,…,sr without changing the order.

Each of the occurrences of string a in a string b is a position i (1≤i≤|b|−|a|+1) such that b[i…i+|a|−1]=a (|a| is the length of string a).

You are asked q queries: for the i-th query you are required to calculate the number of occurrences of string t in a substring s[li…ri].

Input
The first line contains three integer numbers n, m and q (1≤n,m≤103, 1≤q≤105) — the length of string s, the length of string t and the number of queries, respectively.

The second line is a string s (|s|=n), consisting only of lowercase Latin letters.

The third line is a string t (|t|=m), consisting only of lowercase Latin letters.

Each of the next q lines contains two integer numbers li and ri (1≤li≤ri≤n) — the arguments for the i-th query.

Output
Print q lines — the i-th line should contain the answer to the i-th query, that is the number of occurrences of string t in a substring s[li…ri].

Examples
inputCopy
10 3 4
codeforces
for
1 3
3 10
5 6
5 7
outputCopy
0
1
0
1
inputCopy
15 2 3
abacabadabacaba
ba
1 15
3 4
2 14
outputCopy
4
0
3
inputCopy
3 5 2
aaa
baaab
1 3
1 1
outputCopy
0
0
Note
In the first example the queries are substrings: “cod”, “deforces”, “fo” and “for”, respectively.

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve()
{
    ll n,m,q;
    cin>>n>>m>>q;
    string s,t;
    cin>>s>>t;
    ll ans[n+1]={0};
    ll an=0;
    for(int i=0;i<=n-m;i++)
    {
        if(s.substr(i,m)==t) ans[i]=1;//注意substr的复杂度为o(n)
    }
    for(ll i=0;i<q;i++)
{
        ll l,r;
        cin>>l>>r;
        for(int i=l-1;i<=r-m;i++)
        {
            if(ans[i]) an++;
        }
        cout<<an<<endl;
        an=0;
    }
}
 
 
 
int main()
{
    solve();
    return 0;
}

  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/71521
推荐阅读
相关标签
  

闽ICP备14008679号