1004B. Sonya and Exhibition(思维+简单数学)

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 ( 1n,m103

) — the number of flowers and visitors respectively.

Each of the next m

lines contains two integers li and ri ( 1lirin), meaning that i-th visitor will visit all flowers from li to ri

inclusive.

Output

Print the string of n

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
Copy
5 3
1 3
2 4
2 5
Output
Copy
01100
Input
Copy
6 3
5 6
1 4
4 6
Output
Copy
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 [13]
, there are one rose and two lilies, so the beauty is equal to 12=2
; in the segment [24], there are one rose and two lilies, so the beauty is equal to 12=2; in the segment [25], there are two roses and two lilies, so the beauty is equal to 22=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 [56]
, there are one rose and one lily, so the beauty is equal to 11=1; in the segment [14], there are two roses and two lilies, so the beauty is equal to 22=4; in the segment [46], there are two roses and one lily, so the beauty is equal to 21=2
  • .

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

.

题意:

要在长度为n的花坛种n颗花(只有玫瑰花和百合花),一共有m个顾客赏花,每个顾客只看(l,r)区间内的花

每个顾客的满意度是所看到的玫瑰花  X  所看的百合花,求如何安排玫瑰花和百合花的位置使得顾客的满意度和最大

思路:对于每个顾客满意度最大是当所看区间玫瑰花数量与百合花数量相等,所以玫瑰花和百合花可以间隔摆放

代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N = 1005;
int arr[N];
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++){
		int l,r;
		scanf("%d%d",&l,&r);
	}
	for(int i=0;i<n;i++)
	   printf("%d",i%2?1:0);
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值