CF1004B.Sonya and Exhibition

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition.

There are nn flowers in a row in the exhibition. Sonya can put either a rose or a lily in the ii -th position. Thus each of nn positions should contain exactly one flower: a rose or a lily.

She knows that exactly mm people will visit this exhibition. The ii -th visitor will visit all flowers from lil_i to rir_i inclusive. The girl knows that each segment has its own beauty that is equal to the product of the number of roses and the number of lilies.

Sonya wants her exhibition to be liked by a lot of people. That is why she wants to put the flowers in such way that the sum of beauties of all segments would be maximum possible.

输入格式

The first line contains two integers nn and mm ( 1n,m1031\leq n, m\leq 10^3 ) — the number of flowers and visitors respectively.

Each of the next mm lines contains two integers lil_i and rir_i ( 1lirin1\leq l_i\leq r_i\leq n ), meaning that ii -th visitor will visit all flowers from lil_i to rir_i inclusive.

输出格式

Print the string of nn characters. The ii -th symbol should be «0» if you want to put a rose in the ii -th position, otherwise «1» if you want to put a lily.

If there are multiple answers, print any.

输入输出样例

  • 输入#1

    5 3
    1 3
    2 4
    2 5
    

    输出#1

    01100
  • 输入#2

    6 3
    5 6
    1 4
    4 6
    

    输出#2

    110010

说明/提示

In the first example, Sonya can put roses in the first, fourth, and fifth positions, and lilies in the second and third positions;

  • in the segment [13][1\ldots3] , there are one rose and two lilies, so the beauty is equal to 12=21\cdot 2=2 ;
  • in the segment [24][2\ldots4] , there are one rose and two lilies, so the beauty is equal to 12=21\cdot 2=2 ;
  • in the segment [25][2\ldots5] , there are two roses and two lilies, so the beauty is equal to 22=42\cdot 2=4 .

The total beauty is equal to 2+2+4=82+2+4=8 .

In the second example, Sonya can put roses in the third, fourth, and sixth positions, and lilies in the first, second, and fifth positions;

  • in the segment [56][5\ldots6] , there are one rose and one lily, so the beauty is equal to 11=11\cdot 1=1 ;
  • in the segment [14][1\ldots4] , there are two roses and two lilies, so the beauty is equal to 22=42\cdot 2=4 ;
  • in the segment [46][4\ldots6] , there are two roses and one lily, so the beauty is equal to 21=22\cdot 1=2 .

The total beauty is equal to 1+4+2=71+4+2=7 .

首页