CF401C题解

题目链接

题意翻译

构造一个 01 序列,包含 n 个 0,m 个 1 要求不存在连续 2 个 0,或 3 个 1 1 <= n; m<=1000000

题目描述

Now it’s time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They’ve been best friends ever since primary school and hopefully, that can somehow help them in teamwork.

For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing numbers 1 and 0. The boys are very superstitious. They think that they can do well at the Olympiad if they begin with laying all the cards in a row so that:

there wouldn’t be a pair of any side-adjacent cards with zeroes in a row;
there wouldn’t be a group of three consecutive cards containing numbers one.
Today Vanya brought n n cards with zeroes and m m cards with numbers one. The number of cards was so much that the friends do not know how to put all those cards in the described way. Help them find the required arrangement of the cards or else tell the guys that it is impossible to arrange cards in such a way.

输入格式

The first line contains two integers: n n ( 1<=n<=10^{6} 1<=n<=10
6
) — the number of cards containing number 0; m m ( 1<=m<=10^{6} 1<=m<=10
6
) — the number of cards containing number 1.

输出格式

In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.

输入输出样例

输入 #1 复制

1
1 2

输出 #1

1
101

输入 #2

1
4 8

输出 #2

1
110110110101

输入 #3

1
4 10

输出 #3

1
11011011011011

输入 #4

1
1 5

输出 #4

1
-1

题解

首先 将两种特殊情况即输出-1的判断出来
分别是 n > m+1 || m > 2*(n+1)
然后根据不同的情况分类输出即可
代码如下 仅供参考

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include<iostream>
#include<cstdio>

using namespace std;

int n,m,k,l;

void out()
{
for(int i=1; i<=n; i++)
{
cout<<"10";
}
return ;
}
int main()
{
cin>>n>>m;
if(n>m+1||m>2*(n+1))
{
cout<<"-1";
return 0;
}
if(n==m)
{
out();
return 0;
}
if(n>m)
{
cout<<"0";
n--;
out();
return 0;
}
k=m/2;
while(n>k&&n!=0)
{
cout<<"1";
m--;
cout<<"0";
n--;
k=m/2;
}
l=n;
for(int i=1; i<=n; i++)
{
cout<<"110";
m--;
m--;
l--;
}
if(m==1)
{
cout<<"1";
}
else
{
if(m==2)
{
cout<<"11";
}
}
return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

cpongo11

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值