CodeForces 287B 二分贪心

Vova, the Ultimate Thule new shaman, wants to build a pipeline. As there are exactly n houses in Ultimate Thule, Vova wants the city to have exactly n pipes, each such pipe should be connected to the water supply. A pipe can be connected to the water supply if there's water flowing out of it. Initially Vova has only one pipe with flowing water. Besides, Vova has several splitters.

A splitter is a construction that consists of one input (it can be connected to a water pipe) and x output pipes. When a splitter is connected to a water pipe, water flows from each output pipe. You can assume that the output pipes are ordinary pipes. For example, you can connect water supply to such pipe if there's water flowing out from it. At most one splitter can be connected to any water pipe.

CodeForces 287B 二分贪心_第1张图片  The figure shows a 4-output splitter

Vova has one splitter of each kind: with 234, ..., k outputs. Help Vova use the minimum number of splitters to build the required pipeline or otherwise state that it's impossible.

Vova needs the pipeline to have exactly n pipes with flowing out water. Note that some of those pipes can be the output pipes of the splitters.

Input

The first line contains two space-separated integers n and k (1 ≤ n ≤ 10182 ≤ k ≤ 109).

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cincout streams or the %I64dspecifier.

Output

Print a single integer — the minimum number of splitters needed to build the pipeline. If it is impossible to build a pipeline with the given splitters, print -1.

Sample Input

Input
4 3
Output
2
Input
5 5
Output
1
Input
8 4
Output
-1

题意;n个城市 ,有2,3,。。k种分叉水管,求最少要几个能把水送到所有城市

思路:贪心,从最大分叉水管选, 二分

代码:

#include <stdio.h>
#include <string.h>

long long n, k;
int main() {
	scanf("%lld%lld", &n, &k);
	long long l = 0, r = k, mid;
	while (l < r) {
		mid = (l + r) / 2;
		long long s = mid * k - (mid - 1) * (mid + 2) / 2;
		if (s < n) {
			l = mid + 1;
		}
		else {
			r = mid;
		}
	}
	mid = (l + r) / 2;
	if (mid * k - (mid - 1) * (mid + 2) / 2 < n)
		printf("-1\n");
	else
		printf("%lld\n", mid);
	return 0;
}


你可能感兴趣的:(CodeForces 287B 二分贪心)