CF31C.Schedule

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

At the beginning of the new semester there is new schedule in the Berland State University. According to this schedule, nn groups have lessons at the room 31. For each group the starting time of the lesson and the finishing time of the lesson are known. It has turned out that it is impossible to hold all lessons, because for some groups periods of their lessons intersect. If at some moment of time one groups finishes it's lesson, and the other group starts the lesson, their lessons don't intersect.

The dean wants to cancel the lesson in one group so that no two time periods of lessons of the remaining groups intersect. You are to find all ways to do that.

输入格式

The first line contains integer nn ( 1<=n<=50001<=n<=5000 ) — amount of groups, which have lessons in the room 31. Then nn lines follow, each of them contains two integers lil_{i} rir_{i} ( 1<=li<ri<=1061<=l_{i}<r_{i}<=10^{6} ) — starting and finishing times of lesson of the ii -th group. It is possible that initially no two lessons intersect (see sample 1).

输出格式

Output integer kk — amount of ways to cancel the lesson in exactly one group so that no two time periods of lessons of the remaining groups intersect. In the second line output kk numbers — indexes of groups, where it is possible to cancel the lesson. Groups are numbered starting from 11 in the order that they were given in the input. Output the numbers in increasing order.

输入输出样例

  • 输入#1

    3
    3 10
    20 30
    1 3
    

    输出#1

    3
    1 2 3 
  • 输入#2

    4
    3 10
    20 30
    1 3
    1 39
    

    输出#2

    1
    4 
  • 输入#3

    3
    1 5
    2 6
    3 7
    

    输出#3

    0
    
首页