Codeforces Round #235 (Div. 2) C. Team

C. Team
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 cards with zeroes and 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.

Input

The first line contains two integers: n (1 ≤ n ≤ 106) — the number of cards containing number 0; m (1 ≤ m ≤ 106) — the number of cards containing number 1.

Output

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

Sample test(s)
Input
1 2
Output
101
Input
4 8
Output
110110110101
Input
4 10
Output
11011011011011
Input
1 5
Output
-1
讲解:n个0,和m个1,组成的1和0的组合,且不能连续出现两个0挨着,也不能同时出现3个1挨着:
AC代码:
 1 #include<cstdio>
 2 #include<iostream>
 3 using namespace std;
 4 int main()
 5 {
 6     int a,b;
 7     while (~scanf("%d %d",&a,&b))
 8     {
 9         if (b>2*a+2||a>b+1)
10             puts("-1");
11         else
12         {
13             if (a==b+1)
14             {
15                 printf("0");
16                 a--;
17             }
18             while (a+b>0)
19             {
20                 if (b>a && a>0)
21                 {
22                     printf("110");
23                     b-=2,a--;
24                 }
25 
26                 else if (b==a)
27                 {
28                     printf("10");
29                     a--;b--;
30                 }
31 
32                 if (a==0 && b!=0)
33                 {
34                     printf("1");
35                     b--;
36                 }
37             }
38         }
39         puts("");
40     }
41     return 0;
42 }
原文地址:https://www.cnblogs.com/lovychen/p/3603490.html