CodeForces 430A Points and Segments

Description

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 andm 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 segmenti 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) andm (1 ≤ m ≤ 100). The next line containsn space-separated integers x1, x2, ..., xn (0 ≤ xi ≤ 100) — the coordinates of the points. The following m lines contain the descriptions of them segments. Each line contains two integersli andri (0 ≤ li ≤ ri ≤ 100) — the borders of thei-th segment.

It's guaranteed that all the points are distinct.

Output

If there is no good drawing for a given test, output a single integer -1. Otherwise outputn integers, each integer must be 0 or 1. Thei-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 Input

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 

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

解析:无论线段如何,只要点按照“0101010……”这种方法,从左到右画即可。最后要按照输入时的顺序输出,线段什么的不用考虑。


#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
const int N = 110;
struct POINT{
	int x;
	int id;
	int v;
}point[N];
bool cmp1(POINT a,POINT b) {
	return a.x < b.x;
}
bool cmp2(POINT a,POINT b) {
	return a.id < b.id;
}
int main() {
	int n,m;
	while( scanf("%d%d",&n,&m) != EOF) {
		for(int i = 0; i < n; i++) {
			scanf("%d",&point[i].x);
			point[i].id = i;
		}
		int a,b;
		for(int i = 0; i < m; i++) {
			scanf("%d%d",&a,&b);
		}
		sort(point,point+n,cmp1);
		for(int i = 0; i < n; i++) {
			point[i].v = i%2;
		}
		sort(point,point+n,cmp2);
		for(int i = 0; i < n; i++) {
			printf("%d",point[i].v);
			if(i != n) {
				printf(" ");
			}
		}
		printf("\n");
	}
	return 0;
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值