[LeetCode] Trapping Rain Water

문제링크


Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining.

Example 1:

img

Input: height = [0,1,0,2,1,0,1,3,2,1,2,1]
Output: 6
Explanation: The above elevation map (black section) is represented by array [0,1,0,2,1,0,1,3,2,1,2,1]. In this case, 6 units of rain water (blue section) are being trapped.

Example 2:

Input: height = [4,2,0,3,2,5]
Output: 9

Constraints:

  • n == height.length

  • 0 <= n <= 3 * 10**5

  • `0 <= height[i] <= 10**5


Sol

물이 얼마나 담기는가를 구하는 문제입니다.

사실 저는 처음엔 스택을 활용하여 단방향으로 완전탐색을 하려 했습니다.

그러나 아쉽게도(?) 테스트 케이스 320개 중 319개를 통과하고 마지막 케이스가 Time Limit에 걸렸네요.ㅎㅎ

Hard 난이도인 만큼 특히 접근 아이디어를 한번 더 고민해볼 필요가 있는 문제였습니다!


그래서 다른 방법을 찾아보았습니다.

image-20210629000716895

  1. 결국 물이 차려면 ‘좌우가 막혀’ 있어야 합니다.

  2. 그러면 직사각형 넓이 를 구하는데에 밑변이 1이므로, 획득가능한 물의 높이를 구하여

    answer에 더해주면 되는데요.

  3. 바로 이 높이(h)를 어떻게 구하는가가 핵심이었습니다.

  4. 만약 idx=4 인 시점이라고 하면, 지금 위치 기준으로 왼쪽을 보아 가장 높은 벽의 높이(l_top)는 2, 오른쪽을 보면 가장 높은 벽의 높이(r_top)은 3 입니다.

    따라서 idx 4 위치에서 가장 높게 물을 받을 수 있는 높이는 min(l_top, r_top)인 2 입니다.

    ​ (2를 넘어가면 왼쪽으로 물이 넘치겠죠? )

    그럼 이제 idx 4 위치에서 최대 높이는 알겠으니, 시작하는 높이가 어디부터인지 살펴보면,

    height[idx] = 1 이므로, 결과적으론 idx 4 위치에서는 1부터 2 까지의 높이차 만큼의 물을 획득 가능합니다.


    따라서, idx 위치에서 획득 가능한 물의 양은 다음과 같습니다.

    max(min(l_top, r_top) - now_h, 0)
    


    위 그림에서 문제에서 제시된 Example1의 상황에서 idx별 어떻게 동작하여 정답을 이끌어내는지

    그 과정을 풀어두었으니, 함께 참고하시면 이해에 도움이 될 것입니다.


    코드는 아래와 같습니다.


Code

class Solution:
    def trap(self, height: List[int]) -> int:       
        idx, answer = 0, 0
        while idx < len(height):
            now_h = height[idx]
            l_top = max(height[:idx]) if len(height[:idx]) > 0 else 0
            r_top = max(height[idx+1:]) if len(height[idx+1:]) > 0 else 0
            
            s = max(min(l_top, r_top) - now_h, 0)
            answer += s
            
            idx += 1

        return answer

2021

[LeetCode] Word Search

2 minute read

문제링크 문제 설명 Given an m x n grid of characters board and a string word, return true if word exists in the grid. The word can be constructed from letters o...

[프로그래머스] 기지국 설치

2 minute read

문제링크 문제 설명 N개의 아파트가 일렬로 쭉 늘어서 있습니다. 이 중에서 일부 아파트 옥상에는 4g 기지국이 설치되어 있습니다. 기술이 발전해 5g 수요가 높아져 4g 기지국을 5g 기지국으로 바꾸려 합니다. 그런데 5g 기지국은 4g 기지국보다 전달 범위가 좁아, 4g 기...

[백준] 괄호 제거

2 minute read

문제링크 괄호 제거 시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율 1 초 128 MB 2016 680 ...

[LeetCode] Longest Palindromic Substring

1 minute read

문제링크 문제 설명 Given a string s, return the longest palindromic substring in s. Example 1: Input: s = "babad" Output: "bab" Note: "aba" is also a valid ans...

[프로그래머스] 거리두기 확인하기

6 minute read

문제링크 문제 설명 개발자를 희망하는 죠르디가 카카오에 면접을 보러 왔습니다. 코로나 바이러스 감염 예방을 위해 응시자들은 거리를 둬서 대기를 해야하는데 개발 직군 면접인 만큼 아래와 같은 규칙으로 대기실에 거리를 두고 앉도록 안내하고 있습니다. 대기실은 5...

[프로그래머스] 불량 사용자

3 minute read

문제링크 문제 설명 개발팀 내에서 이벤트 개발을 담당하고 있는 “무지”는 최근 진행된 카카오이모티콘 이벤트에 비정상적인 방법으로 당첨을 시도한 응모자들을 발견하였습니다. 이런 응모자들을 따로 모아 불량 사용자라는 이름으로 목록을 만들어서 당첨 처리 시 제외하도록 이벤트 당첨자...

[프로그래머스] 문자열 압축

3 minute read

문제링크 문제 설명 데이터 처리 전문가가 되고 싶은 “어피치”는 문자열을 압축하는 방법에 대해 공부를 하고 있습니다. 최근에 대량의 데이터 처리를 위한 간단한 비손실 압축 방법에 대해 공부를 하고 있는데, 문자열에서 같은 값이 연속해서 나타나는 것을 그 문자의 개수와 반복되...

[LeetCode] Container With Most Water

1 minute read

문제링크 Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo...

[LeetCode] Trapping Rain Water

1 minute read

문제링크 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining. Exam...

[LeetCode] Median of Two Sorted Arrays

2 minute read

문제링크 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. The overall run time c...

[LeetCode] First Missing Positive

1 minute read

문제링크 Given an unsorted integer array nums, find the smallest missing positive integer. You must implement an algorithm that runs in O(n) time and uses co...

[백준] 나무 자르기

3 minute read

문제링크 나무 자르기 시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율 1 초 256 MB 72052 20773 ...

[프로그래머스] 광고삽입

5 minute read

문제링크 문제 설명 카카오TV에서 유명한 크리에이터로 활동 중인 죠르디는 환경 단체로부터 자신의 가장 인기있는 동영상에 지구온난화의 심각성을 알리기 위한 공익광고를 넣어 달라는 요청을 받았습니다. 평소에 환경 문제에 관심을 가지고 있던 “죠르디”는 요청을 받아들였고 광고효과...

[LeetCode] Climbing Stairs

1 minute read

문제링크 Easy You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you ...

[프로그래머스] 거스름돈

1 minute read

문제링크 문제 설명 Finn은 편의점에서 야간 아르바이트를 하고 있습니다. 야간에 손님이 너무 없어 심심한 Finn은 손님들께 거스름돈을 n 원을 줄 때 방법의 경우의 수를 구하기로 하였습니다. 예를 들어서 손님께 5원을 거슬러 줘야 하고 1원, 2원, 5원이 있다면 ...

[LeetCode] Unique Paths

1 minute read

문제링크 A robot is located at the top-left corner of a m x n grid (marked ‘Start’ in the diagram below). The robot can only move either down or right at any p...

[LeetCode] 3Sum

1 minute read

문제링크 Medium Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + ...

Back to top ↑