eolymp
bolt
Try our new interface for solving problems
Problems

Squarow

Squarow

Moris's favorite computer game is called "Squarow". The game starts with a row of colored squares appearing on the screen. The player can choose a color and remove all the squares of that color (you cannot choose a color that is not among the colors of the squares). After removal, all remaining squares are shifted to the left so that there are no empty spaces in the row between adjacent squares. The order of the squares in the row does not change. All squares of the same color, standing in a row one after another, form a block. When you remove a selected color, you get the number of points equal to the number of blocks left in the row.

Help Moris find out what is the largest number of blocks he can get after removing the squares of some color, and what color to choose. If there are several such colors, output any of them.

Input

The first line contains a single integer n (1n2 * 105) - the number of squares in the row. The second line contains n integers ai (1in, 1ai2 * 105) - the color of the i-th square in the row.

Output

In a single line output two integers: the largest number of blocks that can remain after removing all the squares of one chosen color, and the number corresponding to the color that must be removed to achieve such a number of blocks.

Explanation

In the first example, if you remove color 1, one block of color 2 will remain, and if you remove color 2, there will be one block of color 1 (since the blocks on opposite sides of the block of color 2 will merge into one block).

In the second example, if you remove color 1, there will be three blocks, if you remove color 2, there will be also three blocks, and if you remove color 3, then 4 blocks will remain.

In the third example: for color 4 : 4 blocks, for color 5 : 2 blocks, for color 9 : 4 blocks.

Time limit 1 second
Memory limit 128 MiB
Input example #1
6
1 1 1 2 2 1
Output example #1
1 1
Input example #2
12
1 1 2 3 3 3 2 1 1 1 2 2
Output example #2
4 3
Input example #3
15
4 5 5 4 4 4 5 9 9 5 5 5 5 9 9
Output example #3
4 4
Source 2018 Innopolis First Stage, December 1