http://codeforces.com/contest/828/problem/Eapi
Everyone knows that DNA strands consist of nucleotides. There are four types of nucleotides: "A", "T", "G", "C". A DNA strand is a sequence of nucleotides. Scientists decided to track evolution of a rare species, which DNA strand was string s initially.數組
Evolution of the species is described as a sequence of changes in the DNA. Every change is a change of some nucleotide, for example, the following change can happen in DNA strand "AAGC": the second nucleotide can change to "T" so that the resulting DNA strand is "ATGC".app
Scientists know that some segments of the DNA strand can be affected by some unknown infections. They can represent an infection as a sequence of nucleotides. Scientists are interested if there are any changes caused by some infections. Thus they sometimes want to know the value of impact of some infection to some segment of the DNA. This value is computed as follows:ide
Let the infection be represented as a string e, and let scientists be interested in DNA strand segment starting from position l to position r, inclusive.
Prefix of the string eee... (i.e. the string that consists of infinitely many repeats of string e) is written under the string s from position l to position r, inclusive.
The value of impact is the number of positions where letter of string s coincided with the letter written under it.
Being a developer, Innokenty is interested in bioinformatics also, so the scientists asked him for help. Innokenty is busy preparing VK Cup, so he decided to delegate the problem to the competitors. Help the scientists!spa
The first line contains the string s (1 ≤ |s| ≤ 105) that describes the initial DNA strand. It consists only of capital English letters "A", "T", "G" and "C".rest
The next line contains single integer q (1 ≤ q ≤ 105) — the number of events.code
After that, q lines follow, each describes one event. Each of the lines has one of two formats:orm
1 x c, where x is an integer (1 ≤ x ≤ |s|), and c is a letter "A", "T", "G" or "C", which means that there is a change in the DNA: the nucleotide at position x is now c.
2 l r e, where l, r are integers (1 ≤ l ≤ r ≤ |s|), and e is a string of letters "A", "T", "G" and "C" (1 ≤ |e| ≤ 10), which means that scientists are interested in the value of impact of infection e to the segment of DNA strand from position l to position r, inclusive.ip
For each scientists' query (second type query) print a single integer in a new line — the value of impact of the infection on the DNA.ci
ATGCATGC
4
2 1 8 ATGC
2 2 6 TTT
1 4 T
2 2 6 TA
8
2
4
給你一個字符串,而後你有一些操做:
1.單點更新
2.查詢區間[l,r]中,有多少個字符能和所給的字符串匹配(字符串循環匹配)
樹狀數組,因爲查詢的字符串最長10,且字符集直郵4,因此咱們直接暴力對T[10][10][4]建樹,T[i][j][k]表示這個爲長度爲i,該字符的位置是j%i,該字符是k,而後去討論便可。
#include<stdio.h> #include<algorithm> #include<string.h> using namespace std; const int maxn = 1e5+7; struct bit{ int a[maxn]; int lowbit(int x){ return x&(-x); } void update(int x,int v){ for(int i=x;i<maxn;i+=lowbit(i)){ a[i]+=v; } } int get(int x){ int sum=0; for(int i=x;i;i-=lowbit(i)){ sum+=a[i]; } return sum; } int get(int l,int r){ return get(r)-get(l-1); } }T[11][11][4]; char s[maxn]; int q; int getid(char x){ if(x=='A')return 0; if(x=='T')return 1; if(x=='C')return 2; if(x=='G')return 3; } int main(){ scanf("%s",s+1); int len = strlen(s+1); for(int j=1;j<=10;j++) for(int i=1;i<=len;i++) T[j][i%j][getid(s[i])].update(i,1); scanf("%d",&q); while(q--){ int op; scanf("%d",&op); if(op==1){ int l; char t[10]; scanf("%d%s",&l,t); for(int i=1;i<=10;i++){ T[i][l%i][getid(t[0])].update(l,1); T[i][l%i][getid(s[l])].update(l,-1); } s[l]=t[0]; }else{ int l,r; char t[10]; scanf("%d%d%s",&l,&r,t); int len2=strlen(t); int ans = 0; for(int i=0;i<len2;i++){ ans+=T[len2][(l+i)%len2][getid(t[i])].get(l,r); } printf("%d\n",ans); } } }