- Time limit: 1.00 s
- Memory limit: 512 MB
You are given an array of integers. Your task is to calculate the mode each window of elements, from left to right.
The mode is the most frequent element in an array. If there are several possible modes, choose the smallest of them.
Input
The first line contains two integers and : the number of elements and the size of the window.
Then there are integers : the contents of the array.
Output
Print values: the modes.
Constraints
Example
Input:
8 3 1 2 3 2 5 2 4 4
Output:
1 2 2 2 2 4