CodeForces - 949A - Zebras(思维)

本文介绍了一个有趣的编程挑战——CodeForces-949A-Zebras题目的解决思路及AC代码实现。任务要求将一个由0和1组成的字符串划分成若干个满足特定条件的子序列(称为斑马序列),每个字符恰好属于一个子序列,且这些子序列需按时间顺序排列。

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

CodeForces - 949A - 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
题目链接
这个题目就是给你一个0、1串,要求你找字串,可以是只有0,否则就需要是有前保0和最后也是0,如果中间有1,那么必须1之间有0间隔。至于找的子串只要符合要求怎么找都可以。
这个题目有点思维性,就是找子串的话,不一定要一次次的遍历找,可以申请一个vector数组,做一个动态二维数组,每一行行代表一个子串,每遇到一个0就把这个位置记录到当前行然后跳到下一行,如果遇到1,看是不是第一个数就是1,如果第一个就是的话,他一定没有前保0,直接输出-1,return就可以了,如果不是的话,就返回上一行,因为上一行的位置有前保0,然后记录该1的位置,这样把字符串遍历一遍就找完了。
AC代码

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
using namespace std;
const int maxn = 2e5 + 5;
vector<int> v[maxn];
char str[maxn];

int main()
{
    int cnt = 0;
    gets(str);
    int len = strlen(str);
    int fuck = 0;
    for(int i = 0; i < len; i++)
    {
        if(str[i] == '0') v[cnt++].push_back(i + 1);
        else
        {
            if(!cnt)
            {
                printf("-1\n");
                return 0;
            }
            v[--cnt].push_back(i + 1);
        }
        fuck = max(fuck, cnt);
    }
    if(fuck != cnt)
    {
        printf("-1\n");
        return 0;
    }
    printf("%d\n", cnt);
    for(int i = 0; i < cnt; i++)
    {
        cout << v[i].size();
        for(int j = 0; j < v[i].size(); j++)
        {
            cout << " " << v[i][j];
        }
        printf("\n");
    }
    return 0;
}
### 关于 Codeforces Problem 1802A 目前提供的引用内容并未涉及 Codeforces 编号为 1802A 的题目详情或解决方案[^1]。然而,基于常见的竞赛编程问题模式以及可能的解决方法,可以推测该类题目通常围绕算法设计、数据结构应用或者特定技巧展开。 如果假设此题属于典型的算法挑战之一,则可以从以下几个方面入手分析: #### 可能的方向一:字符串处理 许多入门级到中级难度的问题会考察字符串操作能力。例如判断子串是否存在、统计字符频率或是执行某种转换逻辑等。以下是 Python 中实现的一个简单例子用于演示如何高效地比较两个字符串是否相匹配: ```python def are_strings_equal(s1, s2): if len(s1) != len(s2): return False for i in range(len(s1)): if s1[i] != s2[i]: return False return True ``` #### 方向二:数组与列表的操作 另一常见主题是对整数序列进行各种形式上的变换或者是查询最值等问题。下面给出一段 C++ 程序片段来展示快速寻找最大元素位置的方法: ```cpp #include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int> a(n); for(auto &x : a){ cin>>x; } auto max_it = max_element(a.begin(),a.end()); cout << distance(a.begin(),max_it)+1; // 输出索引加一作为答案 } ``` 由于具体描述缺失,在这里仅提供通用框架供参考。对于确切解答还需要访问实际页面获取更多信息后再做进一步探讨[^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值