leetcode11 盛水容器 贪心
Posted Erio
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode11 盛水容器 贪心相关的知识,希望对你有一定的参考价值。
这道题,总感觉做过。。。
先理解题意,何为容器
容器
要求水面高度相同
于是体积就是长方形,高度有两块较高板的低板决定,宽度由两块板间距离决定。
考虑当前最优解,就贪心
从两边开始向内,若能使得体积变大,则取。
贪心策略为移动当前选的两个木板中较短板,这样减少了宽度,但有可能增加高度。
class Solution { public: int maxArea(vector<int>& height) { int len=height.size(); int l=0,r=len-1; int temp=(r-l)*min(height[l],height[r]); while(l!=r) { if(height[l]<height[r]) l++; else r--; temp=max(temp,(r-l)*min(height[l],height[r])); } return temp; } };
以上是关于leetcode11 盛水容器 贪心的主要内容,如果未能解决你的问题,请参考以下文章