200990: [AtCoder]ARC099 C - Minimization

Memory Limit:1024 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

There is a sequence of length $N$: $A_1, A_2, ..., A_N$. Initially, this sequence is a permutation of $1, 2, ..., N$.

On this sequence, Snuke can perform the following operation:

  • Choose $K$ consecutive elements in the sequence. Then, replace the value of each chosen element with the minimum value among the chosen elements.

Snuke would like to make all the elements in this sequence equal by repeating the operation above some number of times. Find the minimum number of operations required. It can be proved that, Under the constraints of this problem, this objective is always achievable.

Constraints

  • $2 \leq K \leq N \leq 100000$
  • $A_1, A_2, ..., A_N$ is a permutation of $1, 2, ..., N$.

Input

Input is given from Standard Input in the following format:

$N$ $K$
$A_1$ $A_2$ $...$ $A_N$

Output

Print the minimum number of operations required.


Sample Input 1

4 3
2 3 1 4

Sample Output 1

2

One optimal strategy is as follows:

  • In the first operation, choose the first, second and third elements. The sequence $A$ becomes $1, 1, 1, 4$.

  • In the second operation, choose the second, third and fourth elements. The sequence $A$ becomes $1, 1, 1, 1$.


Sample Input 2

3 3
1 2 3

Sample Output 2

1

Sample Input 3

8 3
7 3 1 8 4 6 2 5

Sample Output 3

4

Input

题意翻译

> 给定 $n,k$ ,一个 $1\sim n$ 的排列 $\{a_n\}$。每次选择一个长度为 $k$ 的区间 $[l,r]$,向下推平为 $\min_{i=l}^r\{a_i\}$ 。求最少多少次操作可以使得所有值相同。 > > $n\leq 100,000$

加入题单

算法标签: