Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals), problem: (E) DNA Evolution Solution In C/C++

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
int getnum(char c){
switch(c){
case ‘A’:return 0;
case ‘T’:return 1;
case ‘G’:return 2;
case ‘C’:return 3;
}
}
int N,M;
char S[100100];
char T[20];
long long s[11][11][4][100100];
int lowbit(int x){return x&-x;}
void add(long long A[],int x,long long c){for(int i=x;i<=N;i+=lowbit(i))A[i]+=c;}
long long sum(long long A[],int x){long long re=0;for(int i=x;i;i-=lowbit(i))re+=A[i];return re;}
int main()
{
scanf(“%s”,S);
N=strlen(S);
for(int j=1;j<=10;j++)
for(int i=0;i<N;i++)
add(s[j][(i+1)%j][getnum(S[i])],i+1,1);
int Q,t,x,l,r;
cin>>Q;
for(int q=1;q<=Q;q++){
scanf(“%d”,&t);
if(t==1){
scanf(“%d%s”,&x,T);
for(int j=1;j<=10;j++)
add(s[j][x%j][getnum(S[x-1])],x,-1);
S[x-1]=T[0];
for(int j=1;j<=10;j++)
add(s[j][x%j][getnum(S[x-1])],x,1);
}
else{
scanf(“%d%d%s”,&l,&r,T);
M=strlen(T);
long long ans=0;
for(int i=0;i<M;i++)
ans+=sum(s[M][(l+i)%M][getnum(T[i])],r)-sum(s[M][(l+i)%M][getnum(T[i])],l-1);
printf(“%I64d\n”,ans);
}
}
return 0;
}

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
int getnum(char c){
switch(c){
case ‘A’:return 0;
case ‘T’:return 1;
case ‘G’:return 2;
case ‘C’:return 3;
}
}
int N,M;
char S[100100];
char T[20];
long long s[11][11][4][100100];
int lowbit(int x){return x&-x;}
void add(long long A[],int x,long long c){for(int i=x;i<=N;i+=lowbit(i))A[i]+=c;}
long long sum(long long A[],int x){long long re=0;for(int i=x;i;i-=lowbit(i))re+=A[i];return re;}
int main()
{
scanf(“%s”,S);
N=strlen(S);
for(int j=1;j<=10;j++)
for(int i=0;i<N;i++)
add(s[j][(i+1)%j][getnum(S[i])],i+1,1);
int Q,t,x,l,r;
cin>>Q;
for(int q=1;q<=Q;q++){
scanf(“%d”,&t);
if(t==1){
scanf(“%d%s”,&x,T);
for(int j=1;j<=10;j++)
add(s[j][x%j][getnum(S[x-1])],x,-1);
S[x-1]=T[0];
for(int j=1;j<=10;j++)
add(s[j][x%j][getnum(S[x-1])],x,1);
}
else{
scanf(“%d%d%s”,&l,&r,T);
M=strlen(T);
long long ans=0;
for(int i=0;i<M;i++)
ans+=sum(s[M][(l+i)%M][getnum(T[i])],r)-sum(s[M][(l+i)%M][getnum(T[i])],l-1);
printf(“%I64d\n”,ans);
}
}
return 0;
}

More from author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Related posts

Advertismentspot_img

Latest posts

How Under Desk Storage Is Quietly Changing the Game

📢 As an Amazon Associate, I earn from qualifying purchases.There comes a point when you realise that tolerating a frustrating situation is costing you...

Has a woman ever mated with an ape?

Throughout history, urban legends, mythology, and speculative fiction have frequently explored the boundaries between humans and animals. One of the most persistent and sensationalized...

Why Home Office Lighting Is Currently Breaking the Internet

📢 As an Amazon Associate, I earn from qualifying purchases.There comes a point when you realise that tolerating a frustrating situation is costing you...

Want to stay up to date with the latest news?

We would love to hear from you! Please fill in your details and we will stay in touch. It's that simple!