This problem is a Mooshak version of a CSES problem with relaxed time limit (2s) so that Java solutions with the desired complexity can pass.


[PC003] Playlist

You are given a playlist of a radio station since its establishment. The playlist has a total of n songs.

What is the longest sequence of successive songs where each song is unique?

Input

The first input line contains an integer n the number of songs.

The next line has n integers k1,k1,,kn​: the id number of each song.

Output

Print the length of the longest sequence of unique songs.

Constraints

Example Input Example Output
8
1 2 1 3 2 7 4 2
5

Competitive Programming (CC3032) 2024/2025
DCC/FCUP - University of Porto