[문제요약] 소시지 개수와 감식가의 수가 주어질 때 같은 양의 소시지를 감식가에서 분배하기 위한 최소 cutting 수를 구하는 문제.
예를 들어 2 개의 소시지와 6 명의 감식가이면 2 개의 소시지를 3 등분(한 소시지당 두 번의 cutting)하면 되니 최소 4 번의 cutting.
3 개의 소시지와 4 개의 감식가이면 각 소시지를 4 분의 3 등분하여 큰 등분을 하나씩 나누어 주고 남은 작은 등분 세
개를 나머지 한 사람에에 나누어주면 되니 최소 3 번의 cutting
In order to elegantly divide the sausages, the number of cuts splitting individual sausages must be as small as possible.
For instance, if there are two sausages and six tasters (the first test case below), it is sufficient to split each sausage into three equal parts, making a total of four cuts. On the other hand, if there are three sausages and four tasters (the second test case below), one possibility is cutting off three quarters of each sausage. Those larger parts will each go to one of the tasrers, while the fourth taster will get the three smaller pieces (quarters) left over.
Mirko wants to try the famous sausages, so he volunteered to help Bajs. Help them calculate the minimum total number of cuts needed to carry out the desired division.
input 2 6 output 4 input 3 4 output 3 input 6 2 output 0
출처:coci/2013-2014/contest1