AdSense

Friday, January 9, 2015

Container With Most Water

At first I was thinking about using the same strategy as the one we used in Largest Rectangle in Histogram, or Trapping Rain Water. But none of them worked. The difference between this problem and Largest Rectangle in Histogram is that in the latter, the rectangles should be adjacent to each other (see the following figure, the largest rectangle should be among 1 to 5).

Largest Rectangle in Histogram

In this problem, we only deal with lines. So the containers can be any rectangles formed by elements from 0 to 6 . For any element i in the array, the largest element will the the farthest element j from i that has num[j] > num[i].
Container with Most Water




public int maxArea(int[] height) {
        if (height == null)
            throw new NullPointerException("Null array!");
        if (height.length < 2)
            return 0;
        int left = 0;
        int right = height.length - 1;
        int maxArea = 0;
        while (left < right) {
            int h = Math.min(height[left], height[right]);
            maxArea = Math.max(maxArea, h * (right - left));
            if (height[left] < height[right])
                left++;
            else
                right--;
        }
        return maxArea;
    }

1 comment:


  1. The development of artificial intelligence (AI) has propelled more programming architects, information scientists, and different experts to investigate the plausibility of a vocation in machine learning. Notwithstanding, a few newcomers will in general spotlight a lot on hypothesis and insufficient on commonsense application. IEEE final year projects on machine learning In case you will succeed, you have to begin building machine learning projects in the near future.

    Projects assist you with improving your applied ML skills rapidly while allowing you to investigate an intriguing point. Furthermore, you can include projects into your portfolio, making it simpler to get a vocation, discover cool profession openings, and Final Year Project Centers in Chennai even arrange a more significant compensation.


    Data analytics is the study of dissecting crude data so as to make decisions about that data. Data analytics advances and procedures are generally utilized in business ventures to empower associations to settle on progressively Python Training in Chennai educated business choices. In the present worldwide commercial center, it isn't sufficient to assemble data and do the math; you should realize how to apply that data to genuine situations such that will affect conduct. In the program you will initially gain proficiency with the specialized skills, including R and Python dialects most usually utilized in data analytics programming and usage; Python Training in Chennai at that point center around the commonsense application, in view of genuine business issues in a scope of industry segments, for example, wellbeing, promoting and account.

    ReplyDelete