302235: CF430A. Points and Segments (easy)

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Points and Segments (easy)

题意翻译

一条数轴上放了n个点和m条线段,你要把每一个点染成红色或蓝色,使得每一条线段上(包括首尾)红色点的个数和蓝色点的个数相差不超过1。 输入:第一行n,m,第二行n个数,为点的位置;接下来m行为选段的首尾。输出:如果可以达成目标,输出任意一种方案;否则输出-1。

题目描述

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 $ [l_{i},r_{i}] $ consider all the red points belong to it ( $ r_{i} $ points), and all the blue points belong to it ( $ b_{i} $ points); each segment $ i $ should satisfy the inequality $ |r_{i}-b_{i}|<=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.

输入输出格式

输入格式


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 $ x_{1},x_{2},...,x_{n} $ ( $ 0<=x_{i}<=100 $ ) — the coordinates of the points. The following $ m $ lines contain the descriptions of the $ m $ segments. Each line contains two integers $ l_{i} $ and $ r_{i} $ ( $ 0<=l_{i}<=r_{i}<=100 $ ) — the borders of the $ i $ -th segment. It's guaranteed that all the points are distinct.

输出格式


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.

输入输出样例

输入样例 #1

3 3
3 7 14
1 5
6 10
11 15

输出样例 #1

0 0 0

输入样例 #2

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

输出样例 #2

1 0 1 

Input

题意翻译

一条数轴上放了n个点和m条线段,你要把每一个点染成红色或蓝色,使得每一条线段上(包括首尾)红色点的个数和蓝色点的个数相差不超过1。 输入:第一行n,m,第二行n个数,为点的位置;接下来m行为选段的首尾。输出:如果可以达成目标,输出任意一种方案;否则输出-1。

加入题单

上一题 下一题 算法标签: