Codeforces 176 B

B. Pipeline
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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 %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 test(s)
input
4 3
output
2
input
5 5
output
1
input
8 4
output
-1
#include <iostream> 
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>

using namespace std;

int main()
{
    long long n,tmp,temp;
    long long k;
    long double dtmp;
    //巨郁闷!被1000000000 999999999叉掉了,而只要换成long double就OK了 
    cin>>n>>k;
    tmp=(k-1)*k/2+1;
    //cout<<tmp<<endl;
    if(n>tmp)cout<<-1<<endl;
    else
    {
        dtmp=(2.0*k-1)*(2.0*k-1)-8.0*(n-1);
        //cout<<dtmp<<endl;
        dtmp=(2.0*k-1-sqrt(dtmp))/2.0;
        temp=dtmp;
        if(dtmp>temp)temp++;
        //if(dtmp==temp)cout<<"!"<<endl;
        if(dtmp<0)temp=1;
        //cout<<dtmp<<endl;
        cout<<temp<<endl;
    }
    return 0;
}

本文链接:Codeforces 176 B

转载声明:本站文章若无特别说明,皆为原创,转载请注明来源:Rexdf,谢谢!^^


カテゴリー: ACM タグ: パーマリンク

コメントを残す

メールアドレスが公開されることはありません。

*

:zsmilebig: :zsadbig: :zwiredbig: :zgreenhappy: more »

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください