COCI '12 Contest 1 #2 F7

View as PDF

Submit solution


Points: 7
Time limit: 1.0s
Memory limit: 32M

Problem type

The fictional World Championship of Formula 7 Drivers 2012 was characterized by exciting races and frequent shifts of driver positions on the leaderboard. Antun has missed most of it because he was training for olympiads in informatics. Now his only consolation are his medals and being the main character in this task. He has a simple question for you COCI contestants: "How many drivers participating in this Championship still had a chance to become Formula 7 World Champion at the start of the final race?" The World Champion is, of course, the driver with the largest point total at the end (after the final race).

There are N drivers participating in the Championship. They are all assigned points after each race, including the final one. The winner of the race is awarded N points, the runner-up gets N-1 points, and so on until the last driver, who gets 1 point. Two drivers cannot finish a race in the same spot.

Write a program to calculate, based on the total number of points that each driver has earned before the final race, how many drivers still have a chance to have the largest total after the final race and thus win the Championship. If more than one driver has the same maximum point total, they are all awarded the World Champion title.

Input Specification

The first line of input contains the positive integer N (3 \le N \le 300\,000), the number of drivers participating in the Championship.

Each of the following N lines contains a single integer B_i (0 \le B_i \le 2\,000\,000, i=1, \dots, N), the number of points that a driver has before the final race.

Output Specification

The first and only line of output should contain the requested number of drivers that can still win.

Sample Input 1

3
8
10
9

Sample Output 1

3

Sample Input 2

5
15
14
15
12
14

Sample Output 2

4

Comments

There are no comments at the moment.