301343: CF251C. Number Transformation

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

Description

Number Transformation

题意翻译

给出三个数$a$,$b$,$k$。 有两种对一个数变换方式: - 把这个数减一 - 把这个数减去$a\ \text{mod}\ t$,其中$1\leq t\leq k$ 求$a$至少能经过几步走到$b$

题目描述

Little Petya likes positive integers a lot. Recently his mom has presented him a positive integer $ a $ . There's only one thing Petya likes more than numbers: playing with little Masha. It turned out that Masha already has a positive integer $ b $ . Petya decided to turn his number $ a $ into the number $ b $ consecutively performing the operations of the following two types: 1. Subtract 1 from his number. 2. Choose any integer $ x $ from $ 2 $ to $ k $ , inclusive. Then subtract number $ (a\ mod\ x) $ from his number $ a $ . Operation $ a\ mod\ x $ means taking the remainder from division of number $ a $ by number $ x $ . Petya performs one operation per second. Each time he chooses an operation to perform during the current move, no matter what kind of operations he has performed by that moment. In particular, this implies that he can perform the same operation any number of times in a row. Now he wonders in what minimum number of seconds he could transform his number $ a $ into number $ b $ . Please note that numbers $ x $ in the operations of the second type are selected anew each time, independently of each other.

输入输出格式

输入格式


The only line contains three integers $ a $ , $ b $ ( $ 1<=b<=a<=10^{18} $ ) and $ k $ ( $ 2<=k<=15 $ ). Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输出格式


Print a single integer — the required minimum number of seconds needed to transform number $ a $ into number $ b $ .

输入输出样例

输入样例 #1

10 1 4

输出样例 #1

6

输入样例 #2

6 3 10

输出样例 #2

2

输入样例 #3

1000000000000000000 1 3

输出样例 #3

666666666666666667

说明

In the first sample the sequence of numbers that Petya gets as he tries to obtain number $ b $ is as follows: 10 $ → $ 8 $ → $ 6 $ → $ 4 $ → $ 3 $ → $ 2 $ → $ 1. In the second sample one of the possible sequences is as follows: 6 $ → $ 4 $ → $ 3.

Input

题意翻译

给出三个数$a$,$b$,$k$。 有两种对一个数变换方式: - 把这个数减一 - 把这个数减去$a\ \text{mod}\ t$,其中$1\leq t\leq k$ 求$a$至少能经过几步走到$b$

加入题单

算法标签: