시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB52393382.500%

문제

aAs an end-of-the-world alarmist, you’re always looking for new data to support your end-of-the-world theories. A common form of data is a series of scalar samples over time, for instance the outdoor temperature taken at one second intervals for an entire day, or the height of the tide measured every minute for a month. Given such a sampling, you’d like to check if the difference between the maximum sample and minimum sample is large, that way you can yell and scream that the world has undergone serious change and thus is about to end.

The problem is, such data sets often contain some erroneous samples whose scalar values are too large or too small, due to transient errors in monitoring equipment. In order to make your claims more believable, you want to smooth out these erroneous values by calculating what’s called a moving average. Given a series of n samples s1, s2, ..., sn and a window size w where w ≤ n, a moving average consists of n − w + 1 elements. The first element of the moving average is the average of the first w samples s1, s2, ..., sw. The second element of the moving average is the average of the same window, except shifted one element forward, i.e. the average of samples s2, s3, ..., sw+1. And so on. For simplicity, round each element of the moving average down to the nearest equal or lesser integer.

입력

The first line is the number K of input data sets, followed by the K data sets, each of the following form:

The first line of each data set contains the integers n and w, the number of samples and the window size, respectively, where 1 ≤ n ≤ 100 and 1 ≤ w ≤ n. The next line contains n non-negative integers representing the samples. Each sample is at most 1000.

출력

For each data set, output “Data Set x:” on a line by itself, where x is its number. On the next line, output the absolute difference between the maximum and minimum element of the moving average. Each data set should be followed by a blank line.

예제 입력 1

2
4 2
2 9 1 0
5 3
100 110 5 105 105

예제 출력 1

Data Set 1:
5

Data Set 2:
2