Codeforces #374(Div.2)A. One-dimensional Japanese Crossword【模拟】水题

75 篇文章 0 订阅

A. One-dimensional Japanese Crossword

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Recently Adaltik discovered japanese crosswords. Japanese crossword is a picture, represented as a table sizeda × b squares, and each square is colored white or black. There are integers to the left of the rows and to the top of the columns, encrypting the corresponding row or column. The number of integers represents how many groups of black squares there are in corresponding row or column, and the integers themselves represents the number of consecutive black squares in corresponding group (you can find more detailed explanation in Wikipediahttps://en.wikipedia.org/wiki/Japanese_crossword).

Adaltik decided that the general case of japanese crossword is too complicated and drew a row consisting ofn squares (e.g. japanese crossword sized1 × n), which he wants to encrypt in the same way as in japanese crossword.

The example of encrypting of a single row of japanese crossword. 

Help Adaltik find the numbers encrypting the row he drew.

Input

The first line of the input contains a single integern (1 ≤ n ≤ 100) — the length of the row. The second line of the input contains a single string consisting ofn characters 'B' or 'W', ('B' corresponds to black square, 'W' — to white square in the row that Adaltik drew).

Output

The first line should contain a single integerk — the number of integers encrypting the row, e.g. the number of groups of black squares in the row.

The second line should contain k integers, encrypting the row, e.g. corresponding to sizes of groups of consecutive black squares in the order from left to right.

Examples

Input

3
BBW

Output

1
2

Input

5
BWBWB

Output

3
1 1 1

Input

4
WWWW

Output

0

Input

4
BBBB

Output

1
4

Input

13
WBBBBWWBWBBBW

Output

3
4 1 3

Note

The last sample case correspond to the picture in the statement.

题目大意:

让你求在长度为N的字符串中,连续的B的区间个数,和每个区间B的个数。


思路:

直接模拟即可。


Ac代码:

#include<stdio.h>
#include<string.h>
using namespace std;
char a[10000];
int ans[10000];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        scanf("%s",a);
        int cont=0;
        int contz=0;
        for(int i=0;i<n;i++)
        {
            if(a[i]=='B')
            {
                int flag=0;
                for(int j=i;j<n;j++)
                {
                    if(a[j]=='B')cont++;
                    else
                    {
                        flag=1;
                        i=j;break;
                    }
                }
                if(flag==0)break;
                ans[contz++]=cont;
                cont=0;
            }
        }
        if(cont!=0)
        {
            ans[contz++]=cont;
        }
        printf("%d\n",contz);
        if(contz==0)continue;
        for(int i=0;i<contz;i++)
        {
            printf("%d ",ans[i]);
        }
        printf("\n");
    }
}














  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值