LeetCode——Construct the Rectangle

Question

For a web developer, it is very important to know how to design a web page's size. So, given a specific rectangular web page’s area, your job by now is to design a rectangular web page, whose length L and width W satisfy the following requirements:

  1. The area of the rectangular web page you designed must equal to the given target area.

  2. The width W should not be larger than the length L, which means L >= W.

  3. The difference between length L and width W should be as small as possible.

    You need to output the length L and the width W of the web page you designed in sequence.

Example:

Input: 4

Output: [2, 2]

Explanation: The target area is 4, and all the possible ways to construct it are [1,4], [2,2], [4,1].

But according to requirement 2, [1,4] is illegal; according to requirement 3, [4,1] is not optimal compared to [2,2]. So the length L is 2, and the width W is 2.

Note:

The given area won't exceed 10,000,000 and is a positive integer

The web page's width and length you designed must be positive integers.

Solution

技巧就是用平方去逼近面积值,但是又必须找到能整除的值。

Answer

class Solution {
public:
vector<int> constructRectangle(int area) {
int w = area;
for (int i = 1; i * i <= area; i++) {
if (area % i == 0)
w = i;
}
return vector<int>{area / w, w};
}
};

最新文章

  1. RPC框架DUBBO
  2. python 函数默认值的小坑啊
  3. poj 3368 Frequent values(RMQ)
  4. Swift和OC相互调
  5. [codility]Equi-leader
  6. 引用传递&amp;值传递
  7. ubuntu14.04 安装 StudioZend12
  8. php date操作
  9. VC,一条会被鼠标移动的直线
  10. Redis实现高并发分布式序列号
  11. iPhone Info.plist属性说明
  12. Java并发编程之显式锁机制
  13. javascript 45种缓动效果BY司徒正美
  14. junit参数化测试
  15. Sky(dart)语言介绍-android学习之旅(十)
  16. nginx windows could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
  17. 【python】笔记
  18. .NET Core 2.0 httpclient 请求卡顿解决方法
  19. [JZOJ5984] 仙人掌
  20. 致Python初学者:Anaconda入门使用指南

热门文章

  1. sql server剔除某列的汉字,函数。
  2. python抓取网页中的动态数据
  3. 编译型 解释型 C++工作原理
  4. CXF 框架
  5. Java 之包
  6. 关于Nginx部署Django项目的资料收集
  7. 记一次centos7挂在nas盘的踩坑经过
  8. PHP数组的创建
  9. pycharm断点调试
  10. Java集合(7):HashMap