Help Farmer(思維+暴力)

Once upon a time in the Kingdom of Far Far Away lived Sam the Farmer. Sam had a cow named Dawn and he was deeply attached to her. Sam would spend the whole summer stocking hay to feed Dawn in winter. Sam scythed hay and put it into haystack. As Sam was a bright farmer, he tried to make the process of storing hay simpler and more convenient to use. He collected the hay into cubical hay blocks of the same size. Then he stored the blocks in his barn. After a summer spent in hard toil Sam stored A·B·C hay blocks and stored them in a barn as a rectangular parallelepiped A layers high. Each layer had B rows and each row had C blocks.

At the end of the autumn Sam came into the barn to admire one more time the hay he'd been stacking during this hard summer. Unfortunately, Sam was horrified to see that the hay blocks had been carelessly scattered around the barn. The place was a complete mess. As it turned out, thieves had sneaked into the barn. They completely dissembled and took away a layer of blocks from the parallelepiped's front, back, top and sides. As a result, the barn only had a parallelepiped containing (A - 1) × (B - 2) × (C - 2) hay blocks. To hide the evidence of the crime, the thieves had dissembled the parallelepiped into single 1 × 1 × 1 blocks and scattered them around the barn. After the theft Sam counted n hay blocks in the barn but he forgot numbers AB и C.

Given number n, find the minimally possible and maximally possible number of stolen hay blocks.

Input

The only line contains integer n from the problem's statement (1 ≤ n ≤ 109).

Output

Print space-separated minimum and maximum number of hay blocks that could have been stolen by the thieves.

Note that the answer to the problem can be large enough, so you must use the 64-bit integer type for calculations. Please, do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specificator.

Examples

Input

4

Output

28 41

Input

7

Output

47 65

Input

12

Output

48 105

題意;

已知(a-1)*(b-2)*(c-2)==n,

求a*b*c-n的最大最小值;

思路:暴力枚舉每一個因子:
 

#include<iostream>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
int main()
{
    ll n;
    cin>>n;
    //ll maxx=3*3*(n+1);
    ll maxx=0;
     int sq=(int)sqrt(n);
     ll minn=1e18;
    for(int i=1;i<=sq+1;i++)
    {
        if(n%i==0)
        {
            int y=(int)n/i;
            for(int j=1;j<=sqrt(y)+1;j++)
            {
                if(y%j==0)
                {
                    int k=y/j;
                    minn=min(minn,(ll)(i+1)*(j+2)*(k+2));
                    minn=min(minn,(ll)(i+2)*(j+1)*(k+2));
                    minn=min(minn,(ll)(i+2)*(j+2)*(k+1));
                     maxx=max(maxx,(ll)(i+1)*(j+2)*(k+2));
                    maxx=max(maxx,(ll)(i+2)*(j+1)*(k+2));
                    maxx=max(maxx,(ll)(i+2)*(j+2)*(k+1));
                }
            }
        }
    }
    cout<<minn-n<<" "<<maxx-n<<endl;
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章