408018: GYM102961 ZF Sliding Median
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
ZF. Sliding Mediantime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
You are given an array of $$$n$$$ integers. Your task is to calculate the median of each window of $$$k$$$ elements, from left to right.
The median is the middle element when the elements are sorted. If the number of elements is even, there are two possible medians and we assume that the median is the smaller of them.
InputThe first input 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,\dots,x_n$$$: the contents of the array.
OutputPrint $$$n−k+1$$$ values: the medians.
ExampleInput8 3 2 4 3 5 8 1 2 1Output
3 4 5 5 2 1