gym101522F. Frustrating Game(模拟)

本文介绍了解决一项名为FrustratingGame的编程挑战的方法。游戏中,玩家需将一排红蓝球通过施魔法变为白色,魔法需同时转换R个红球和B个蓝球,且选定球之间不能夹杂白球。文章分享了一种有效策略,包括代码实现,确保从两侧向内取球,避免中间出现白球。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

                                                F. Frustrating Game

time limit per test

1.0 s

memory limit per test

256 MB

input

standard input

output

standard output

The magician Alice is playing a game. Alice has N balls in a row, consists of red balls and blue balls. For convenience, the balls are numbered 1 to N from left to right. Her goal is to transform all balls into White by casting magic spells.

In a single spell, Alice can choose exactly R red balls and B blue balls at the same time, and then cast a spell on them, so all these R + Bchosen balls will become white balls. However, there is a restriction: As some magical power may remains in the white balls, Alice cannot perform spells when there exists at least one white ball located between the leftmost chosen ball and the rightmost chosen ball.

For instance, if Alice balls 2, 6 and 7 have became white balls by previous spells, she cannot choose the set of balls {3, 8, 9} in a single spell as there exist a white ball numbered 5 between them. Similarly, single spell on balls {1, 3, 4}, {3, 4, 9} or {1, 9, 10} are invalid, while single spell on balls {3, 4, 5} or {8, 9, 10} are valid.

As Alice has spent more than hundred of years to achieve the goal and end up in failures, she is very frustrated. So, she promised that she will teach her magic skills to the one who can solve this frustrating game.

Nothing is more appealing than having an opportunity to learn magic! So you are trying to help Alice to achieve the goal.

Input

The first line contains 3 positive integers, NR and B. (R, B ≥ 1, 1 ≤ R + B ≤ N ≤ 105)

The second line contains a string S, consisting of N characters R (red) and B (blue). The i-th character is the color of the i-th ball from the left.

Output

If it is impossible to achieve the goal, output NO on the first line.

Otherwise, output YES, followed by an integer S on the second line – the number of spells (S) you would like to cast.

In the next S lines, each should indicate a spell with R + B integers, representing the indices of the balls you have selected for this spell. You can output the indices in arbitrary order within the same line.

Please note that the spells should be printed in their chronological order. If there are more than one solution, you can output any of them.

Examples

input

Copy

6 1 1
BBRBRR

output

Copy

YES
3
1 6
2 5
3 4

input

Copy

8 1 2
RBRBRBRB

output

Copy

NO

input

Copy

10 2 3
BRRRBBBRBB

output

Copy

YES
2
1 2 3 9 10
4 5 6 7 8

Note

In the first sample, the initial state is as follow:

After casting the first spell:

And after the second spell:

And the final state:

In the second sample, the initial state is as follow:

In the third sample, the initial state is as follow:

After casting the first spell:

And at last:

 

一、原题地址

点我传送

 

二、大致题意

给出n个球,每次施展魔法必须把R个红球变成白色,且必须把B个蓝球变成白色,每轮选择的这些球,最左边的一个和最右边的一个中间不能包含白球。这里题目里面的描述很迷,完全靠看Note猜想题意。

询问能否完成所有球变白,然后输出每轮的操作。

 

三、大致思路

一开始想到的是贪心的假算法,交上去WA7了,后来发现实际上这样会漏掉很多情况。

看了后台大佬的代码,真的好简单。令st为我们要取走的一段的段首,令ed为要取走的一段的段尾。那只需要模拟这一段上面有多少蓝球和红球,然后取走,再令st和ed找到对应位置,再取再复原再取....直到结束。但是输出时只要反向的输出这些操作,这样就能够保证是从两边往内部取球,而不是需要我们自己去维护顺序。至于为什么反向输出,可以自己手画一画情况,结合代码很容易理解。

自己一点一点修改代码,错了就再修改...最后几乎和大佬的改成一模一样了2333。如果侵犯到了你,请一定联系我删除!

 

四、代码

#include<iostream>
#include<cmath>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<algorithm>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<string>
#include<stack>
#include<bitset>
using namespace std;
#define PI 3.14159265
const int inf=0x3f3f3f3f;
typedef long long LL;
typedef unsigned long long ull;



int n,R,B,tot;
char s[100005];
int pre[100005],nex[100005];
int rcnt,bcnt;
int st,ed;
vector<int>ans[100005];


bool goBack()
{
    for(int i=1;i<=R+B;i++)
    {
        st=pre[st];
        if(st==0)break;
    }
    rcnt=bcnt=0;
    st=nex[st];
    ed=pre[st];
    for(int i=1;i<=R+B;i++)
    {
        ed=nex[ed];
        if(ed>n)return false;
        if(s[ed]=='R')rcnt++;
        else bcnt++;
    }
    return true;
}

bool moveTo()
{
    if(s[st]=='R')rcnt--;
    else bcnt--;
    st=nex[st];
    ed=nex[ed];
    if(ed>n)return false;
    if(s[ed]=='R')rcnt++;
    else bcnt++;
    return true;
}

void del()
{
    int t=st;
    tot++;
    for(int i=1;i<=R+B;i++)
    {
        ans[tot].push_back(t);
        t=nex[t];
    }
    st=pre[st];
    ed=nex[ed];
    nex[st]=ed;
    pre[ed]=st;
}

int main()
{
    scanf("%d %d %d",&n,&R,&B);
    scanf("%s",s+1);
    for(int i=1;i<=n;i++)
    {
        pre[i]=i-1;
        nex[i]=i+1;
    }
    nex[0]=1;
    pre[n+1]=n;
    while(true)
    {
        if(!goBack())break;
        bool ok=true;
        while(rcnt!=R||bcnt!=B)
        {
            if(!moveTo())
            {
                ok=false;
                break;
            }
        }
        if(!ok)break;
        del();
    }
    
    if(nex[0]==n+1)
    {
        printf("YES\n");
        printf("%d\n",tot);
        for(int i=tot;i>=1;i--)
        {
            for(int j=0;j<ans[i].size();j++)
            {
                if(j)printf(" ");
                printf("%d",ans[i][j]);
            }
            printf("\n");
        }
    }
    else printf("NO\n");
    return 0;
}

 

内容概要:本文详细探讨了基于樽海鞘算法(SSA)优化的极限学习机(ELM)在回归预测任务中的应用,并与传统的BP神经网络、广义回归神经网络(GRNN)以及未优化的ELM进行了性能对比。首先介绍了ELM的基本原理,即通过随机生成输入层与隐藏层之间的连接权重及阈值,仅需计算输出权重即可快速完成训练。接着阐述了SSA的工作机制,利用樽海鞘群体觅食行为优化ELM的输入权重和隐藏层阈值,从而提高模型性能。随后分别给出了BP、GRNN、ELM和SSA-ELM的具体实现代码,并通过波士顿房价数据集和其他工业数据集验证了各模型的表现。结果显示,SSA-ELM在预测精度方面显著优于其他三种方法,尽管其训练时间较长,但在实际应用中仍具有明显优势。 适合人群:对机器学习尤其是回归预测感兴趣的科研人员和技术开发者,特别是那些希望深入了解ELM及其优化方法的人。 使用场景及目标:适用于需要高效、高精度回归预测的应用场景,如金融建模、工业数据分析等。主要目标是提供一种更为有效的回归预测解决方案,尤其是在处理大规模数据集时能够保持较高的预测精度。 其他说明:文中提供了详细的代码示例和性能对比图表,帮助读者更好地理解和复现实验结果。同时提醒使用者注意SSA参数的选择对模型性能的影响,建议进行参数敏感性分析以获得最佳效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值