Binary String Constructing CodeForces - 1003B

本文介绍了一个算法问题的解决方案:如何根据指定数量的0、1及变化位置数来构造一个二进制字符串。文章详细展示了输入输出示例,并提供了一段C++代码实现。

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

You are given three integers aabb and xx. Your task is to construct a binary string ssof length n=a+bn=a+b such that there are exactly aa zeroes, exactly bb ones and exactlyxx indices ii (where 1i<n1≤i<n) such that sisi+1si≠si+1. It is guaranteed that the answer always exists.

For example, for the string "01010" there are four indices ii such that 1i<n1≤i<n andsisi+1si≠si+1 (i=1,2,3,4i=1,2,3,4). For the string "111001" there are two such indices ii (i=3,5i=3,5).

Recall that binary string is a non-empty sequence of characters where each character is either 0 or 1.

Input

The first line of the input contains three integers aabb and xx (1a,b100,1x<a+b)1≤a,b≤100,1≤x<a+b).

Output

Print only one string ss, where ss is any binary string satisfying conditions described above. It is guaranteed that the answer always exists.

Examples
Input
2 2 1
Output
1100
Input
3 3 3
Output
101100
Input
5 3 6
Output
01010100
Note

All possible answers for the first example:

  • 1100;
  • 0011.

All possible answers for the second example:

  • 110100;
  • 101100;
  • 110010;
  • 100110;
  • 011001;
  • 001101;
  • 010011;

  • 001011.

#include <iostream>
#include <bits/stdc++.h>
using namespace std;

int main()
{
    int a,b,n,x,i,j,minn;
    char c,d;
    minn = 10000;
    cin>>a>>b>>n;
    minn = min(a,b);
    if(a>b) c = '0',d = '1';
    else c = '1',d = '0';
    if(n%2==0)
    {
        for(i=0;i<n;i++)
        {
            if(i%2==0) printf("%c",c);
            else printf("%c",d);
        }
        //cout<<i<<minn<<minn-n/2<<endl;
        for(;i<n+minn-n/2;i++)
            printf("%c",d);
        for(;i<a+b;i++)
        {
            printf("%c",c);
        }
    }
    else
    {
        for(i=0;i<n;i++)
        {
            if(i%2==0) printf("%c",d);
            else printf("%c",c);
        }
        for(;i<n+minn-n/2-1;i++)
            printf("%c",d);
        for(;i<a+b;i++)
        {
            printf("%c",c);
        }
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值