poj 3536 Beer Refrigerator
| Time Limit: 1000MS | Memory Limit: 65536K | |||
| Total Submissions: 3351 | Accepted: 1308 | Special Judge | ||
Description
Beer Lovers Club makes regular parties. They hate warm beer, but club’s refrigerator is too small to store enough beer for the whole company. So they decided to order a special super-big beer refrigerator. The new refrigerator should be a parallelepiped a × b × c and store exactly n cubical 1 × 1 × 1 beer boxes (the club has n members). To decrease losses of cold, the total area of the surface of the refrigerator must be as small as possible.
For example, if the capacity of the refrigerator must be 12, the possible variants are:
| Dimensions | Surface Area | |
| 3 × 2 × 2 | 32 | |
| 4 × 3 × 1 | 38 | |
| 6 × 2 × 1 | 40 | |
| 12 × 1 × 1 | 50 | 
The best variant in this case is 3 × 2 × 2.
Help the beer lovers to find the optimal dimensions of their new refrigerator.
Input
The input file contains single integer number n (1 ≤ n ≤ 106) — the capacity of the refrigerator. Help the beer lovers to find the optimal dimensions of their new refrigerator.
Output
Output three integer numbers: a, b and c — the optimal dimensions of the refrigerator. If there are several solutions, output any of them.
Sample Input
| #1 | 12 | 
|---|---|
| #2 | 13 | 
| #3 | 1000000 | 
Sample Output
| #1 | 3 2 2 | 
|---|---|
| #2 | 1 13 1 | 
| #3 | 100 100 100 | 
#include<iostream>
using namespace std;
int divi[1000000];
int main()
{
int n;
int p;
int i,j,k;
int a,b,c;
int ans;
while(scanf("%d",&n)!=EOF)
{
p=0;
for(i=1;i<=n;i++)
{
if(n%i==0)
{
divi[p]=i;
p++;
}
}
ans=999999999;
for(i=0;i<p;i++)
{
for(j=0;j<p;j++)
{
if(divi[i]*divi[j]>n)
break;
for(k=0;k<p;k++)
{
if(divi[i]*divi[j]*divi[k]>n)
break;
else if(divi[i]*divi[j]*divi[k]==n)
{
if(divi[i]*divi[j]+divi[i]*divi[k]+divi[j]*divi[k]<ans)
{
a=divi[i];
b=divi[j];
c=divi[k];
ans=divi[i]*divi[j]+divi[i]*divi[k]+divi[j]*divi[k];
break;
}
}
}
}
}
cout<<a<<""<<b<<""<<c<<endl;
}
return 0;
}
 
                    
                 
                
            
         浙公网安备 33010602011771号
浙公网安备 33010602011771号