Hust oj 1241 Blocks(暴力)

来源:互联网 发布:中文域名价格 编辑:程序博客网 时间:2024/05/05 16:55
BlocksTime Limit: 1000 MSMemory Limit: 65536 KTotal Submit: 74(29 users)Total Accepted: 46(27 users)Rating: Special Judge: NoDescriptionDonald wishes to send a gift to his new nephew, Fooey. Donald is a bit of a traditionalist, so he has chosen to send a set of N classic baby blocks. Each block is a cube, 1 inch by 1 inch by 1 inch. Donald wants to stack the blocks together into a rectangular solid and wrap them all up in brown paper for shipping. How much brown paper does Donald need?InputThe first line of input contains C, the number of test cases. For each case there is an additional line containing N, the number of blocks to be shipped. N does not exceed 1000.Output
Your program should produce one line of output per case, giving the minimal area of paper (in square inches) needed to wrap the blocks when they are stacked together.
Sample Input
59102627100
Sample Output
30348254130
纯暴力
#include<cstdio>#include<iostream>#include<cstring>#include<algorithm>using namespace std;int t;int main(){    scanf("%d",&t);    while(t--)    {        int n;        scanf("%d",&n);        int Min = 0x3f3f3f;        for(int i=1;i<=1000;i++)        {            if(i > n) break;            for(int j=1;j<=1000;j++)            {                if(i * j > n) break;                for(int k=1;k<=1000;k++)                {                    if(i * j * k > n) break;                    if(i * j * k == n && (2 * (i * j + i * k + j * k) < Min))                        Min = 2 * (i * j + i * k + j * k);                }            }        }        printf("%d\n",Min);    }}


0 0