zoukankan      html  css  js  c++  java
  • Codeforces 430 A. Points and Segments (easy)


    A. Points and Segments (easy)
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 integersx1, 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 <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    int n,m;
    struct POINT
    {
        int x,c,id;
    }point[110];
    
    bool cmp1(POINT a,POINT b)
    {
        return a.x<b.x;
    }
    
    bool cmp2(POINT a,POINT b)
    {
        return a.id<b.id;
    }
    
    int main()
    {
        scanf("%d%d",&n,&m);
        for(int i=0;i<n;i++)
        {
            scanf("%d",&point[i].x);
            point[i].id=i;
        }
        for(int i=0;i<m;i++) scanf("%*d%*d");
        sort(point,point+n,cmp1);
        for(int i=0;i<n;i++)
        {
            point[i].c=i%2;
        }
        sort(point,point+n,cmp2);
        for(int i=0;i<n;i++)
        {
            printf("%d ",point[i].c);
        }
        putchar(10);
        return 0;
    }
    







  • 相关阅读:
    BUUOJ | [ACTF新生赛2020]usualCrypt (多重加密)
    高数笔记 | 快速索引 + 期末总结(2019-2020学年第二学期)
    BUUOJ | SimpleRev(字符对称加密)
    CTF OJ 题目分类 | Reverse
    CPPU程序设计训练营清明天梯模拟赛题解
    数据可视化 | 2020年3月世界疫情实存人数地图
    CTF OJ 题目分类 | PWN
    BJDCTF 2nd | Strenuous_Huffman(二进制模拟)
    ssh连接慢优化
    日常问题处理
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/6946956.html
Copyright © 2011-2022 走看看