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;
    }

猜你喜欢

转载自www.cnblogs.com/Vampire6/p/11142207.html