51nod 1283 最小周長(水題)
阿新 • • 發佈:2017-07-29
com cin ide splay include 面積 nod lac eml 1283 最小周長
題目來源: Codility
基準時間限制:1 秒 空間限制:131072 KB 分值: 5 難度:1級算法題
收藏
關註
取消關註
一個矩形的面積為S,已知該矩形的邊長都是整數,求所有滿足條件的矩形中,周長的最小值。例如:S = 24,那麽有{1 24} {2 12} {3 8} {4 6}這4種矩形,其中{4 6}的周長最小,為20。
Input
輸入1個數S(1 <= S <= 10^9)。
Output
輸出最小周長。
Input示例
24
Output示例
20
i*j=C,i越靠近j,i+j越小。
1 #include <iostream> 2View Code#include <cmath> 3 using namespace std; 4 int main() 5 { 6 int s; 7 cin>>s; 8 int i=sqrt(s); 9 int j=s/i; 10 while(i*j!=s) 11 { 12 if(i*j>s) 13 i--; 14 else if(i*j<s) 15 j++; 16 } 17 cout<<2*(i+j)<<endl;18 return 0; 19 }
51nod 1283 最小周長(水題)