Codeforces Points and Segments (easy)

Iahub isn't well prepared on geometry problems, but he heard that this year there will be a lot of geometry problems on the IOI selection camp. Scared, Iahub locked himself in the basement and started thinking of new problems of this kind. One of them is the following.

Iahub wants to draw n distinct points and m segments on the OX axis. He can draw each point with either red or blue. The drawing is good if and only if the following requirement is met: for each segment [li, ri] consider all the red points belong to it (ri points), and all the blue points belong to it (bi points); each segment i should satisfy the inequality |ri - bi| ≤ 1.

Iahub thinks that point x belongs to segment [l, r], if inequality l ≤ x ≤ r holds.

Iahub gives to you all coordinates of points and segments. Please, help him to find any good drawing.

Input

The first line of input contains two integers: n (1 ≤ n ≤ 100) and m (1 ≤ m ≤ 100). The next line contains n space-separated integers x1, x2, ..., xn (0 ≤ xi ≤ 100) — the coordinates of the points. The following m lines contain the descriptions of the m segments. Each line contains two integers li and ri (0 ≤ li ≤ ri ≤ 100) — the borders of the i-th segment.

It's guaranteed that all the points are distinct.

题目大意

在数轴上给定n个点,m条线段,对于所有线段i,若点j满足li<=j<=ri,则说:点j在线段i上。要求将所给的点黑白染色,使得对于任意一条线段,在这条线段上的白点数bi,黑点数hi,满足|bi-hi|<=1。

Output

If there is no good drawing for a given test, output a single integer -1. Otherwise output n integers, each integer must be 0 or 1. The i-th number denotes the color of the i-th point (0 is red, and 1 is blue).

If there are multiple good drawings you can output any of them.

Sample test(s)

Input

3 3
3 7 14
1 5
6 10
11 15

Output

0 0 0

Input

3 4
1 2 3
1 2
2 3
5 6
2 2

Output

1 0 1 

题解

无论线段如何,只要点按照“0101010……”这种方法,从左到右画即可。可是为什么考试时没想到?大哭

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cstdlib>
#include<cmath>
#include<algorithm>
using namespace std;
int n,m,x,y;
struct shu
{int s,w;} a[102];
bool kp1(const shu &x,const shu &y)
{return x.s<y.s;}
bool kp2(const shu &x,const shu &y)
{return x.w<y.w;}
int main()
{
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++)
	   {scanf("%d",&a[i].s); a[i].w=i;}
	sort(a+1,a+n+1,kp1);
	for(int i=1;i<=m;i++) scanf("%d%d",&x,&y);
	for(int i=1;i<=n;i++)
	   {if(i%2==0) a[i].s=1;
	    else a[i].s=0;
	   }
	sort(a+1,a+n+1,kp2);
	for(int i=1;i<n;i++) printf("%d ",a[i].s);
	printf("%d\n",a[n].s);
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值