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.
You are given a playlist of a radio station since its establishment. The playlist has a total of
What is the longest sequence of successive songs where each song is unique?
The first input line contains an integer
The next line has
Print the length of the longest sequence of unique songs.
Example Input | Example Output |
8 1 2 1 3 2 7 4 2 |
5 |