Query on a string (선분 수) (2017 - icpc - 우루무치 온라인 경기)
4522 단어 데이터 구조-선분 트 리
You have two strings SSS and TTT in all capitals.
Now an efficient program is required to maintain a operation and support a query.
The operation C i chC~i~chC i ch with given integer iii and capital letter chchch, changes the iii-th character of SSS into chchch.
The query Q i jQ~i~jQ i j asks the program to find out, in the substring of SSS from the iii-th character to the jjj-th one, the total number of TTT appearing.
Input Format
The first line contains an integer TTT, indicating that there are TTT test cases.
For each test case, the first line contains an integer N (N≤100000)N~(N \leq 100000)N (N≤100000).
The second line is the string S (∣S∣≤100000)S~(|S| \leq 100000)S (∣S∣≤100000) and the third line is the string T (∣T∣≤10)T~(|T| \leq 10)T (∣T∣≤10).
Each of the following NNN lines provide a operation or a query as above descriptions.
Output Format
For each query, output an integer correponding to the answer.
Output an empty line after each test case.
샘플 입력
1
5
AABBABA
AA
Q 1 3
C 6 A
Q 2 7
C 2 B
Q 1 5
샘플 출력
1
2
0
제목: t 조 테스트 데이터, n 차 작업, 두 문자열 S, T,Q X Y 는 검색 이 S 열 에서 X - Y 라 는 문자열 에 T 열 이 몇 번 나 타 났 음 을 나타 낸다.C X ch S 열 에서 X 번 째 문 자 를 ch 로 변경 합 니 다.
사고: 첫 번 째 문자열 을 처리 합 니 다. 현재 문 자 를 첫 번 째 문자 로 하면 두 번 째 문자열 이 나타 나 면 다른 배열 로 현재 점 을 1 로 기록 합 니 다. 그렇지 않 으 면 0 입 니 다.예 를 들 어 AABBABA AA. 기 록 된 배열 은 1000000 이 고 이 기록 배열 로 선분 트 리 를 만 듭 니 다. 조 회 는 이 구간 의 합 을 구 하 는 것 입 니 다. 변경 은 선분 트 리 의 단일 업데이트 입 니 다. 그러나 S 문자열 의 마지막 몇 개 에서 마지막 길이 가 T 문자열 보다 작 으 면 판단 할 필요 가 없습니다.구체 적 으로 코드 보기:
AC 코드:
#include
#include
#include
#include
#include
#define maxn 100005
using namespace std;
char str[maxn],s[maxn];
int arr[maxn],len,ll;
void Getarr(char *str,char *s)
{
for(int i=0;ilen)// i+ll>len, T
{
flag=0;
arr[i]=0;
break;
}
}
if(flag)
arr[i]=1;
}
}
struct node
{
int l;
int r;
int sum;
}segtree[maxn*4];
void pushup(int root)
{
segtree[root].sum=segtree[root<<1].sum+segtree[root<<1|1].sum;
}
void build(int root,int l,int r)
{
segtree[root].l=l;
segtree[root].r=r;
if(l==r)
{
segtree[root].sum=arr[l];
return;
}
int mid=(l+r)>>1;
build(root<<1,l,mid);
build(root<<1|1,mid+1,r);
pushup(root);
}
void update(int root,int p,int val)
{
int ll=segtree[root].l;
int rr=segtree[root].r;
if(ll==rr)
{
segtree[root].sum=val;
return;
}
int mid=(ll+rr)>>1;
if(p<=mid) update(root<<1,p,val);
else update(root<<1|1,p,val);
pushup(root);
}
int query(int root,int l,int r)
{
int ll=segtree[root].l;
int rr=segtree[root].r;
if(l<=ll&&rr<=r)
return segtree[root].sum;
int mid=(ll+rr)>>1;
int ans=0;
if(l<=mid)
ans+=query(root<<1,l,r);
if(r>mid)
ans+=query(root<<1|1,l,r);
return ans;
}
int main()
{
int t,n;
scanf("%d",&t);
while(t--)
{
scanf("%d%s%s",&n,str,s);
len=strlen(str);ll=strlen(s);
Getarr(str,s);
build(1,0,len-1);
while(n--)
{
char op[5],ch[3];
int x,y;
scanf("%s",op);
if(op[0]=='Q')
{
scanf("%d%d",&x,&y);
if(y-x+1=0?x-ll+1:0;
for(int i=tmp;i<=x;i++)
{
int flag=1;
for(int j=0;jlen)
{
if(arr[i]!=0)
update(1,i,0);
arr[i]=0;
flag=0;
break;
}
}
if(flag==1)
{
if(arr[i]!=1)
update(1,i,1);
arr[i]=1;
}
}
}
}
cout<
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Query on a string (선분 수) (2017 - icpc - 우루무치 온라인 경기)The operation C i chC~i~chC i ch with given integer iii and capital letter chchch, changes the iii-th character of SSS i...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.