CF535E.Tavas and Pashmaks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Tavas is a cheerleader in the new sports competition named "Pashmaks".

This competition consists of two part: swimming and then running. People will immediately start running RR meters after they finished swimming exactly SS meters. A winner is a such person that nobody else finishes running before him/her (there may be more than one winner).

Before the match starts, Tavas knows that there are nn competitors registered for the match. Also, he knows that ii -th person's swimming speed is sis_{i} meters per second and his/her running speed is rir_{i} meters per second. Unfortunately, he doesn't know the values of RR and SS , but he knows that they are real numbers greater than 00 .

As a cheerleader, Tavas wants to know who to cheer up. So, he wants to know all people that might win. We consider a competitor might win if and only if there are some values of RR and SS such that with these values, (s)he will be a winner.

Tavas isn't really familiar with programming, so he asked you to help him.

输入格式

The first line of input contains a single integer nn ( 1<=n<=2×1051<=n<=2×10^{5} ).

The next nn lines contain the details of competitors. ii -th line contains two integers sis_{i} and rir_{i} ( 1<=si,ri<=1041<=s_{i},r_{i}<=10^{4} ).

输出格式

In the first and the only line of output, print a sequence of numbers of possible winners in increasing order.

输入输出样例

  • 输入#1

    3
    1 3
    2 2
    3 1
    

    输出#1

    1 2 3 
    
  • 输入#2

    3
    1 2
    1 1
    2 1
    

    输出#2

    1 3 
    
首页