1. 程式人生 > >Mike and Chocolate Thieves(二分 數論)

Mike and Chocolate Thieves(二分 數論)

Bad news came to Mike’s village, some thieves stole a bunch of chocolates from the local factory! Horrible!

Aside from loving sweet things, thieves from this area are known to be very greedy. So after a thief takes his number of chocolates for himself, the next thief will take exactly k times more than the previous one. The value of k (k > 1) is a secret integer known only to them. It is also known that each thief’s bag can carry at most n chocolates (if they intend to take more, the deal is cancelled) and that there were exactly four thieves involved.

Sadly, only the thieves know the value of n, but rumours say that the numbers of ways they could have taken the chocolates (for a fixed n, but not fixed k) is m. Two ways are considered different if one of the thieves (they should be numbered in the order they take chocolates) took different number of chocolates in them.

Mike want to track the thieves down, so he wants to know what their bags are and value of n will help him in that. Please find the smallest possible value of n or tell him that the rumors are false and there is no such n.

Input The single line of input contains the integer m (1 ≤ m ≤ 1015) — the number of ways the thieves might steal the chocolates, as rumours say.

Output Print the only integer n — the maximum amount of chocolates that thieves’ bags can carry. If there are more than one n satisfying the rumors, print the smallest one.

If there is no such n for a false-rumoured m, print  - 1.

Examples Input 1 Output 8 Input 8 Output 54 Input 10 Output -1 Note In the first sample case the smallest n that leads to exactly one way of stealing chocolates is n = 8, whereas the amounts of stealed chocolates are (1, 2, 4, 8) (the number of chocolates stolen by each of the thieves).

In the second sample case the smallest n that leads to exactly 8 ways is n = 54 with the possibilities: (1, 2, 4, 8),  (1, 3, 9, 27),  (2, 4, 8, 16),  (2, 6, 18, 54),  (3, 6, 12, 24),  (4, 8, 16, 32),  (5, 10, 20, 40),  (6, 12, 24, 48).

There is no n leading to exactly 10 ways of stealing chocolates in the third sample case.

一開始看這個題目是懵逼的,反正就知道四個人去偷東西,還要是成倍數去偷(有病。。)但是想了想,也不是那麼難。假設第一個人偷了a,那麼後面的人分別偷了ak,akk,akkk個東西,那麼只要使得kkk<=n就行了。找出最小的n。m小於等於1e15,n肯定特別大。二分查詢。如果查詢到了,不要退出搜尋,要繼續搜尋左邊區域的值,去尋找更小的n。 程式碼如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;

ll m;

ll erfen(ll m)
{
	ll l=1;
	ll r=1e60;
	ll minn=-1;
	while(l<=r)
	{
		ll ans=0;
		ll mid=(l+r)/2;
		for(ll i=2;i*i*i<=mid;i++)
		{
			ans+=mid/(i*i*i);
		}
		if(ans==m) minn=mid;
		if(ans>=m) r=mid-1;
		else l=mid+1;
	}
	return minn;
}
int main()
{
	while(scanf("%lld",&m)!=EOF)
	{
		printf("%lld\n",erfen(m));
	}
	return 0;
}

努力加油a啊,(o)/~