Codeforces Round #245 (Div. 2) A - Points and Segments (easy)

原题链接:  http://codeforces.com/contest/430/problem/A

 无力吐槽的水题,尽管原题上标明了easy,但我还是不敢相信会有这么水的题!当一个题简单到你不都敢相信它会那么简单的时候,它就变难了……

                                                         A. 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.

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 


#include <cstdio>
#include <algorithm>
struct point{
   int coo;
   int num;
}p[110];

bool cmp(point x, point y){
    return  x.coo < y.coo;
}

int main(){
    int n, m, l, r, ans[110];
    scanf("%d %d ", &n, &m);
    for(int i = 0; i < n; i ++){
        scanf("%d", &p[i].coo);
        p[i].num = i;
    }
   while(m--) { scanf("%d %d", &l, &r); }  
   std::sort(p, p + n, cmp);
   for(int i = 0; i < n; i++)
        ans[p[i].num] = i%2==0 ? 1 : 0;
   for(int i = 0; i < n-1; i++)
         printf("%d ", ans[i]);
   printf("%d\n", ans[n-1]);
   return 0;
}



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值