시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB112595160.714%

문제

One hundred years from now, in 2117, the International Collegiate Programming Contest (of which the NCPC is a part) has expanded significantly and it is now the Galactic Collegiate Programming Contest (GCPC).

This year there are n teams in the contest. The teams are numbered 1, 2, . . . , n, and your favorite team has number 1.

Like today, the score of a team is a pair of integers (a, b) where a is the number of solved problems and b is the total penalty of that team. When a team solves a problem there is some associated penalty (not necessarily calculated in the same way as in the NCPC – the precise details are not important in this problem). The total penalty of a team is the sum of the penalties for the solved problems of the team.

Consider two teams t1 and t2 whose scores are (a1, b1) and (a2, b2). The score of team t1 is better than that of t2 if either a1 > a2, or if a1 = a2 and b1 < b2. The rank of a team is k + 1 where k is the number of teams whose score is better.

You would like to follow the performance of your favorite team. Unfortunately, the organizers of GCPC do not provide a scoreboard. Instead, they send a message immediately whenever a team solves a problem.

입력

The first line of input contains two integers n and m, where 1 ≤ n ≤ 105 is the number of teams, and 1 ≤ m ≤ 105 is the number of events.

Then follow m lines that describe the events. Each line contains two integers t and p (1 ≤ t ≤ n and 1 ≤ p ≤ 1000), meaning that team t has solved a problem with penalty p. The events are ordered by the time when they happen.

출력

Output m lines. On the i’th line, output the rank of your favorite team after the first i events have happened.

예제 입력 1

3 4
2 7
3 5
1 6
1 9

예제 출력 1

2
3
2
1

출처

ICPC > Regionals > Europe > Northwestern European Regional Contest > Nordic Collegiate Programming Contest > NCPC 2017 G번

  • 문제를 만든 사람: Antti Laaksonen