zoukankan      html  css  js  c++  java
  • Codeforces Round #572 (Div. 2) A.

    A. Keanu Reeves

    题目链接:http://codeforces.com/contest/1189/problem/A

    题目:

    After playing Neo in the legendary "Matrix" trilogy, Keanu Reeves started doubting himself: maybe we really live in virtual reality? To find if this is true, he needs to solve the following problem.

    Let's call a string consisting of only zeroes and ones good if it contains different numbers of zeroes and ones. For example, 1, 101, 0000 are good, while 01, 1001, and 111000 are not good.

    We are given a string s
    of length n consisting of only zeroes and ones. We need to cut s into minimal possible number of substrings s1,s2,…,sk such that all of them are good. More formally, we have to find minimal by number of strings sequence of good strings s1,s2,…,sk such that their concatenation (joining) equals s, i.e. s1+s2+⋯+sk=s

    For example, cuttings 110010 into 110 and 010 or into 11 and 0010 are valid, as 110, 010, 11, 0010 are all good, and we can't cut 110010 to the smaller number of substrings as 110010 isn't good itself. At the same time, cutting of 110010 into 1100 and 10 isn't valid as both strings aren't good. Also, cutting of 110010 into 1, 1, 0010 isn't valid, as it isn't minimal, even though all 3

    strings are good.

    Can you help Keanu? We can show that the solution always exists. If there are multiple optimal answers, print any.
    Input

    The first line of the input contains a single integer n
    (1≤n≤100) — the length of the string s

    .

    The second line contains the string s
    of length n consisting only from zeros and ones.
    Output

    In the first line, output a single integer k(1≤k) — a minimal number of strings you have cut s into.

    In the second line, output k
    strings s1,s2,…,sk separated with spaces. The length of each string has to be positive. Their concatenation has to be equal to s and all of them have to be good.

    If there are multiple answers, print any.

    Examples
    Input

    1
    1

    Output

    1
    1

    Input

    2
    10

    Output

    2
    1 0

    Input

    6
    100011

    Output

    2
    100 011

    Note

    In the first example, the string 1 wasn't cut at all. As it is good, the condition is satisfied.

    In the second example, 1 and 0 both are good. As 10 isn't good, the answer is indeed minimal.

    In the third example, 100 and 011 both are good. As 100011 isn't good, the answer is indeed minimal.
    题意:给出01串,让你分成任意组且每组01个数都不相同
    思路:如果本身01串的01个数不同将其本身输出即可,若相同,分成两部分输出,一部分为字符串第一个字符,另一部分剩余部分
     
        #include<bits/stdc++.h>
        typedef long long ll;
        using namespace std;
        const int maxn=2e5+7;
        int main()
        {
         
            int n;
            char str[200];
            while(cin>>n){
            getchar();
            cin>>str;
            int _0=0,_1=0;
            for(int i=0;i<n;i++)
            {
                if(str[i]=='0')
                    _0++;
                else
                    _1++;
            }
            if(_0!=_1)
                cout<<1<<endl<<str<<endl;
            else {
                cout << 2 << endl;
                cout << str[0] << " ";
                for (int i = 1; i < n; i++)
                    cout << str[i];
                cout << endl;
            }
            }
            return 0;
        }
  • 相关阅读:
    git 看不到别人创建的远程分支
    win10 系统开始菜单没反应的解决方法
    Fiddler 抓取 https 设置详解(图文)
    MongoDB + Express + art-template 项目实例-博客管理系统
    使用 XAML 格式化工具:XAML Styler
    [WPF] 在单元测试中使用 Prism 的 EventAggregator,订阅到 ThreadOption.UIThread 会报错
    分别使用 Python 和 Math.Net 调用优化算法
    在 Azure 上执行一些简单的 python 工作
    Linux默认路由与直连路由
    网站使用域名访问而禁止ip访问的配置
  • 原文地址:https://www.cnblogs.com/Vampire6/p/11142207.html
Copyright © 2011-2022 走看看