CodeForces - 950C Zebras (模拟)

该博客讨论了如何将Oleg的生活历史(由'0'和'1'表示的好坏日子)分成交替的'斑马'序列,即以0开始和结束,且好坏日子交替的子序列。文章提供了输入输出示例和解题思路,包括根据当前字符是0还是1来决定将其添加到哪个子序列中,并确保所有子序列以0结尾。

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

Zebras 

Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alternating in it. Let us denote bad days as 0 and good days as 1. Then, for example, sequences of days 0, 010, 01010 are zebras, while sequences 1, 0110, 0101 are not.

Oleg tells you the story of days he lived in chronological order in form of string consisting of 0 and 1. Now you are interested if it is possible to divide Oleg's life history into several subsequences, each of which is a zebra, and the way it can be done. Each day must belong to exactly one of the subsequences. For each of the subsequences, days forming it must be ordered chronologically. Note that subsequence does not have to be a group of consecutive days.

Input

In the only line of input data there is a non-empty string s consisting of characters 0 and 1, which describes the history of Oleg's life. Its length (denoted as |s|) does not exceed 200 000 characters.

Output

If there is a way to divide history into zebra subsequences, in the first line of output you should print an integer k (1 ≤ k ≤ |s|), the resulting number of subsequences. In the i-th of following k lines first print the integer li (1 ≤ li ≤ |s|), which is the length of the i-th subsequence, and then li indices of days forming the subsequence. Indices must follow in ascending order. Days are numbered starting from 1. Each index from 1 to n must belong to exactly one subsequence. If there is no way to divide day history into zebra subsequences, print -1.

Subsequences may be printed in any order. If there are several solutions, you may print any of them. You do not have to minimize nor maximize the value of k.

Examples

Input

0010100

Output

3
3 1 3 4
3 2 5 6
1 7

Input

111

Output

-1

题目大意:给一个01串,分成k个子序列,保证子序列以0开头0结尾,且0后面接1 ,1 后面接0   如:010    01010

思路:si 为 0 时,把它放到以1 结尾的子序列后面,如果没有就创一个新的子序列存放

si  为 1时 ,把它放到以0 结尾的子序列后面,如果没有就输出  -1

遍历到最后时,还要判断一下是否所有的子序列都是以0 结尾

代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<vector>
using namespace std;
const int N=200005;
char s[N];
vector<int>a[N];
int main()
{
    scanf("%s",s);
    int len=strlen(s),k=0,z=0;
    for(int i=0; i<len; i++)
    {
        if(s[i]=='0')
        {
            a[++z].push_back(i);
        }
        else
        {
            if(z==0) return printf("-1\n"),0;
            a[z--].push_back(i);
        }
        k=max(k,z);
    }
    if(k!=z) return printf("-1\n"),0;
    printf("%d\n",k);
    for(int i=1; i<=k; i++)
    {
        int l=a[i].size();
        printf("%d",l);
        for(int j=0; j<l; j++)
            printf(" %d",a[i][j]+1);
        printf("\n");
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值