시간 제한메모리 제한제출정답맞힌 사람정답 비율
20 초 (추가 시간 없음) 1024 MB50016310233.887%

문제

Avery has an array of N positive integers. The i-th integer of the array is Ai.

A contiguous subarray is an m-countdown if it is of length m and contains the integers m, m-1, m-2, ..., 2, 1 in that order. For example, [3, 2, 1] is a 3-countdown.

Can you help Avery count the number of K-countdowns in her array?

입력

The first line of the input gives the number of test cases, TT test cases follow. Each test case begins with a line containing the integers N and K. The second line contains N integers. The i-th integer is Ai.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the number of K-countdowns in her array.

제한

  • 1 ≤ T ≤ 100.
  • 2 ≤ K ≤ N.
  • 1 ≤ Ai ≤ 2 × 105, for all i.

Test Set 1 (5점)

  • 2 ≤ N ≤ 1000.

Test Set 2 (7점)

  • 2 ≤ N ≤ 2 × 105 for at most 10 test cases.
  • For the remaining cases, 2 ≤ N ≤ 1000.

예제 입력 1

3
12 3
1 2 3 7 9 3 2 1 8 3 2 1
4 2
101 100 99 98
9 6
100 7 6 5 4 3 2 1 100

예제 출력 1

Case #1: 2
Case #2: 0
Case #3: 1

힌트

In sample case #1, there are two 3-countdowns as highlighted below.

  • 1 2 3 7 9 3 2 1 8 3 2 1
  • 1 2 3 7 9 3 2 1 8 3 2 1

In sample case #2, there are no 2-countdowns.

In sample case #3, there is one 6-countdown as highlighted below.

  • 100 7 6 5 4 3 2 1 100

출처

Contest > Google > Kick Start > Google Kick Start 2020 > Round C A번

  • 데이터를 추가한 사람: kyo20111

채점 및 기타 정보

  • 예제는 채점하지 않는다.