炸鸡块君与FIFA22

在这里插入图片描述考虑倍增

#include<bits/stdc++.h>
#define ll long long
using namespace std;
int st[200005][3][20];
char s[200005];
int main()
{
    int n,q;
    scanf("%d%d",&n,&q);
    scanf("%s",s+1);
    for(int i=1;i<=n;i++)
    for(int j=0;j<=2;j++)
    {
        if(s[i]=='W')st[i][j][0]=1;
        else if(s[i]=='L')
        {
            if(j==0)st[i][j][0]=0;
            else st[i][j][0]=-1;
        }
        else st[i][j][0]=0;
    }
    for(int j=1;j<=19;j++)
    for(int i=1;i<=n;i++)
    for(int k=0;k<=2;k++)
    {
        int t=((k+st[i][k][j-1])%3+3)%3;
        if(i+(1<<j)<=n+1)
        {
            st[i][k][j]=st[i][k][j-1]+st[i+(1<<(j-1))][t][j-1];
        }
    }

    for(int i=1;i<=q;i++)
    {
        int l,r,s;
        scanf("%d%d%d",&l,&r,&s);
        int nowpos=l;
        while(nowpos<r+1)
        {
//            cout<<nowpos<<endl;
            int ts=(s%3+3)%3;
            for(int j=19;j>=0;j--)
            {
                if(nowpos+(1<<j)<=r+1)
                {
                    s+=st[nowpos][ts][j];
                    nowpos=nowpos+(1<<j);
                    break;
                }
            }
        }
        printf("%d\n",s);
    }

    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值