CodeForces - 287B-Pipeline(二分)

本文探讨了在终极索伦城市中,通过使用不同类型的分流器来构建满足特定条件的水管网络的问题。主要关注如何利用最少数量的分流器,使城市中的每个房屋都能连接到供水系统,提供了一个算法解决方案,并通过实例展示了算法的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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.

 The figure shows a 4-output splitter

Vova has one splitter of each kind: with 2, 3, 4, ..., 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 ≤ 1018, 2 ≤ k ≤ 109).

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.

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.

Examples

Input

4 3

Output

2

Input

5 5

Output

1

Input

8 4

Output

-1

代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>

using namespace std;

long long n,k;
bool f(long long mid) {
	long long s;
	s=(k+1)*k/2-mid*(mid-1)/2-(k-mid);
	if(mid==k) s=mid;
	if(s>=n) return true;
	else return false;
}
int main() {

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

 

转载于:https://www.cnblogs.com/Staceyacm/p/10781882.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值