6940.Sliding Window Mex

Time Limit: 1s Memory Limit: 512MB

You are given an array of $n$ integers. Your task is to calculate the mex of each window of $k$ elements, from left to right.

The mex is the smallest nonnegative integer that does not appear in the array. For example, the mex for $[3,1,4,3,0,5]$ is $2$ .

Input Format(From the terminal/stdin)

The first line contains two integers $n$ and $k$ : the number of elements and the size of the window.

Then there are $n$ integers $x_1,x_2,\ldots,x_n$ : the contents of the array.

  • $1 \le k \le n \le 2 \cdot 10^5$
  • $0 \le x_i \le 10^9$

Output Format(To the terminal/stdout)

Print $n-k+1$ values: the mex values.

Sample Input

Copy
8 3
1 2 1 0 5 1 1 0
 · \n
 · · · · · · · \n

Sample Output

Copy
0 3 2 2 0 2
 · · · · · \n
Source: CSES, Sliding Window Problems, 3219

Submit

请先 登录

© 2025 FAQs