天天看點

CodeForces - 1004B - Sonya and Exhibition(純思維題)題目連結:題目:題目大意:分析:代碼:

題目連結:

http://codeforces.com/problemset/problem/1004/B

題目:

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 n flowers in a row in the exhibition. Sonya can put either a rose or a lily in the i-th position. Thus each of n positions should contain exactly one flower: a rose or a lily.

She knows that exactly m people will visit this exhibition. The i-th visitor will visit all flowers from li to ri 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.

Input

The first line contains two integers n and m (1≤n,m≤1e3) — the number of flowers and visitors respectively.

Each of the next m lines contains two integers li and ri (1≤li≤ri≤n), meaning that i-th visitor will visit all flowers from li to ri inclusive.

Output

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

If there are multiple answers, print any.

Examples

Input

5 3
1 3
2 4
2 5
      

Output

01100      

Input

6 3
5 6
1 4
4 6
      

Output

110010      

Note

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 [1…3], there are one rose and two lilies, so the beauty is equal to 1⋅2=2;
  • in the segment [2…4], there are one rose and two lilies, so the beauty is equal to 1⋅2=2;
  • in the segment [2…5], there are two roses and two lilies, so the beauty is equal to 2⋅2=4.

The total beauty is equal to 2+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 [5…6], there are one rose and one lily, so the beauty is equal to 1⋅1=1;
  • in the segment [1…4], there are two roses and two lilies, so the beauty is equal to 2⋅2=4;
  • in the segment [4…6], there are two roses and one lily, so the beauty is equal to 2⋅1=2.

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

題目大意:

有一排n個格子,每個格子裡能放一種花,一共有兩種花,一種用 0 代表,另一種用 1 代表,然後給你m各區間,每個區間的價值就是這個區間内的兩種花的數量之積。問你應該怎麼放花,使得這些區間的價值和最大。

分析:

題目的意思轉化一下,就是說讓0 1 的個數在各個區間内都是接近的(和相等,越接近,積越大),也就是說0 1 分布均勻,那麼,我們直接0 1 交替輸出,就可以保證0 1 在各個區間都是最接近的。

代碼:

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;

int main()
{
	int n,m;
	scanf("%d%d",&n,&m);
	int l,r;
	for(int i=1;i<=m;i++)
		scanf("%d%d",&l,&r);
	for(int i=0;i<n;i++)
		printf("%d",i%2);
	putchar('\n');
	return 0;
}