#Lutece0201. Sliding Window

Sliding Window

Migrated from Lutece 201 Sliding Window

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

An array of size n106n\leq 10^6 is given to you. There is a sliding window of size kk which is moving from the very left of the array to the very right. You can only see the kk numbers in the window. Each time the sliding window moves rightwards by one position. Following is an example:

The array is [1,3,1,3,5,3,6,7][1, 3, -1, -3, 5, 3, 6, 7], and kk is 33. Window position Minimum value Maximum value

Window position Minimum value Maximum value
[1,3,1],3,5,3,6,7[1, 3, -1], -3, 5, 3, 6, 7 1-1 33
1,[3,1,3],5,3,6,71, [3, -1, -3], 5, 3, 6, 7 3-3
1,3,[1,3,5],3,6,71, 3, [-1, -3, 5], 3, 6, 7 55
1,3,1,[3,5,3],6,71, 3, -1, [-3, 5, 3], 6, 7
1,3,1,3,[5,3,6],71, 3, -1, -3, [5, 3, 6], 7 33 66
1,3,1,3,5,[3,6,7]1, 3, -1, -3, 5, [3, 6, 7] 77

Your task is to determine the maximum and minimum values in the sliding window at each position.

Input

The input consists of two lines. The first line contains two integers nn and kk which are the lengths of the array and the sliding window. There are nn integers in the second line.

Output

There are two lines in the output. The first line gives the minimum values in the window at each position, from left to right, respectively. The second line gives the maximum values.

Samples

8 3
1 3 -1 -3 5 3 6 7
-1 -3 -3 -3 3 3
3 3 5 5 6 7

Note

The data used in this problem is unofficial data prepared by love8909. So any mistake here does not imply mistake in the offcial judge data.

Resources

POJ Monthly--2006.04.28, Ikki