{"problem":{"name":"Minimization","description":{"content":"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$ conse","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"arc099_a"},"statements":[{"statement_type":"Markdown","content":"There is a sequence of length $N$: $A_1, A_2, ..., A_N$. Initially, this sequence is a permutation of $1, 2, ..., N$.\nOn this sequence, Snuke can perform the following operation:\n\n*   Choose $K$ consecutive elements in the sequence. Then, replace the value of each chosen element with the minimum value among the chosen elements.\n\nSnuke 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.\n\n## Constraints\n\n*   $2 \\leq K \\leq N \\leq 100000$\n*   $A_1, A_2, ..., A_N$ is a permutation of $1, 2, ..., N$.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$ $K$\n$A_1$ $A_2$ $...$ $A_N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"arc099_a","tags":[],"sample_group":[["4 3\n2 3 1 4","2\n\nOne optimal strategy is as follows:\n\n*   In the first operation, choose the first, second and third elements. The sequence $A$ becomes $1, 1, 1, 4$.\n    \n*   In the second operation, choose the second, third and fourth elements. The sequence $A$ becomes $1, 1, 1, 1$."],["3 3\n1 2 3","1"],["8 3\n7 3 1 8 4 6 2 5","4"]],"created_at":"2026-03-03 11:01:13"}}