Points:
1200 (p)
Time limit:
1.0s
Memory limit:
512M
Input:
stdin
Output:
stdout
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 \(k_1,k_2,\ldots,k_n\): the id number of each song.
Output
- Print the length of the longest sequence of unique songs.
Constraints
- \(1 \leq n \leq 2\cdot 10^5\)
- \(1 \leq k_i \leq 10^9\)
Example
Sample input
8
1 2 1 3 2 7 4 2
Sample output
5
Comments
Hint
Sử dụng sliding window
Hint
// Code này rùa, ai giải thích giúp với !!!!
include<bits/stdc++.h>
using namespace std;
ll a[200005];
int main()
{
}
https://ideone.com/nwbAJC
cho em hỏi code này tại sao lại sai 3 test ạ
In độ dài của dãy dài nhất mà mỗi bài hát là duy nhất là sao vậy mình vẫn chưa hiểu lắm