zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    arcgis中根据坐标文件生成要素类
    论C#及.net缺点及发展
    测绘类投稿指南
    .NET 4.0 Beta2中的BigInteger和Complex类(转)
    沈阳招聘.NET(C#)高级软件工程师
    测树学weibull拟合matlab程序,难者不会,会者不难
    景观生态专用软件
    使用匿名函数在后台线程中设置窗体控件属性 ()转
    matlab如何统计矩阵各元素的出现次数
    科学计算与开发环境
  • 原文地址:https://www.cnblogs.com/lovychen/p/3603490.html
Copyright © 2011-2022 走看看