[LeetCode] Word Search
문제링크 문제 설명 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...
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 endpoints of the line i
is at (i, ai)
and (i, 0)
. Find two lines, which, together with the x-axis forms a container, such that the container contains the most water.
Notice that you may not slant the container.
Example 1:
Input: height = [1,8,6,2,5,4,8,3,7]
Output: 49
Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.
Example 2:
Input: height = [1,1]
Output: 1
Example 3:
Input: height = [4,3,2,1,4]
Output: 16
Example 4:
Input: height = [1,2,1]
Output: 2
Constraints:
n == height.length
2 <= n <= 10**5
0 <= height[i] <= 10**4
문제를 읽었을때 ‘음 쉬운데?’ 라는 생각이 들 때는 항상 한번 더 의심해 봐야 합니다.
브루트하게 풀고자 하면, 바로 조합을 활용하면 간단히 풀릴 것 같습니다.
실제로 조합을 활용한 코드는 다음과 같겠습니다.
# sol 1 - O(N제곱)
import itertools
def maxArea(self, height: List[int]) -> int:
answer = 0
idxs = [_ for _ in range(len(height))]
mycombination = itertools.combinations(idxs, 2)
for mycomb in mycombination:
tmp = (mycomb[1]-mycomb[0])*min(height[mycomb[1]], height[mycomb[0]])
if tmp > answer:
answer = tmp
return answer
하지만 역시 답은 맞출 수 있지만, 문제에서 요구한 시간 복잡도를 만족하진 못합니다.
시간복잡도 N제곱인 위 풀이와 달리, N으로 낮출 수 있는 풀이방법은 바로,
Two Pointers를 활용하는 것 입니다. Two Pointers에 익숙지 않은 분들은 다음 문제들을 연습해 보시면 좋습니다.
백준 - 두수의합
백준 - 수들의 합 2
LeetCode - 3 Sum
먼저 left와 right를 주어진 height의 처음과 마지막의 index로 선언해 줍니다.
이후, left < right인 조건하에 while문을 돌아주며.
순간마다 left 막대와 right 막대 사이에 담을 수 있는 물의 양을 tmp로 구해줍니다.
이때, 담을 수 있는 물의 양은 (r-l) * min(height[r], height[l]) 이 될 것입니다.
3번에서 구한 tmp가 지금까지의 answer 보다 크다면, answer를 tmp로 대치해 줍니다.
이제 left와 right를 이동하는데, 막대 높이가 더 낮은 녀석을 한칸 이동시켜주면서 진행합니다.
(height[l] 가 더 작다면 l += 1, height[r]이 더 작다면 r += 1)
실제 문제에서 주어진 Example1 은 각 라운드별로 l, r, tmp, answer이 어떻게 변해가는지
위 그림을 통해 풀어보았습니다.
이 로직을 활용하여 다음과 같은 아주 간단한 코드로 문제를 해결할 수 있습니다.
class Solution:
# sol 2 - two pointers
def maxArea(self, height: List[int]) -> int:
answer = 0
l,r = 0, len(height)-1
while l < r:
tmp = (r - l) * min(height[l], height[r])
if tmp > answer:
answer = tmp
if height[l] >= height[r]:
r -= 1
else:
l += 1
return answer
문제링크 문제 설명 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...
문제링크 문제 설명 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answe...
문제링크 문제 설명 N개의 아파트가 일렬로 쭉 늘어서 있습니다. 이 중에서 일부 아파트 옥상에는 4g 기지국이 설치되어 있습니다. 기술이 발전해 5g 수요가 높아져 4g 기지국을 5g 기지국으로 바꾸려 합니다. 그런데 5g 기지국은 4g 기지국보다 전달 범위가 좁아, 4g 기...
문제링크 괄호 제거 시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율 1 초 128 MB 2016 680 ...
문제링크 문제 설명 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...
문제링크 문제 설명 개발자를 희망하는 죠르디가 카카오에 면접을 보러 왔습니다. 코로나 바이러스 감염 예방을 위해 응시자들은 거리를 둬서 대기를 해야하는데 개발 직군 면접인 만큼 아래와 같은 규칙으로 대기실에 거리를 두고 앉도록 안내하고 있습니다. 대기실은 5...
문제링크 문제 설명 개발팀 내에서 이벤트 개발을 담당하고 있는 “무지”는 최근 진행된 카카오이모티콘 이벤트에 비정상적인 방법으로 당첨을 시도한 응모자들을 발견하였습니다. 이런 응모자들을 따로 모아 불량 사용자라는 이름으로 목록을 만들어서 당첨 처리 시 제외하도록 이벤트 당첨자...
문제링크
문제링크 문제 설명 데이터 처리 전문가가 되고 싶은 “어피치”는 문자열을 압축하는 방법에 대해 공부를 하고 있습니다. 최근에 대량의 데이터 처리를 위한 간단한 비손실 압축 방법에 대해 공부를 하고 있는데, 문자열에서 같은 값이 연속해서 나타나는 것을 그 문자의 개수와 반복되...
문제링크 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...
문제링크 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...
문제링크 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...
문제링크 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...
문제링크 나무 자르기 시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율 1 초 256 MB 72052 20773 ...
문제링크 문제 설명 카카오TV에서 유명한 크리에이터로 활동 중인 죠르디는 환경 단체로부터 자신의 가장 인기있는 동영상에 지구온난화의 심각성을 알리기 위한 공익광고를 넣어 달라는 요청을 받았습니다. 평소에 환경 문제에 관심을 가지고 있던 “죠르디”는 요청을 받아들였고 광고효과...
문제링크 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 ...
문제링크 문제 설명 Finn은 편의점에서 야간 아르바이트를 하고 있습니다. 야간에 손님이 너무 없어 심심한 Finn은 손님들께 거스름돈을 n 원을 줄 때 방법의 경우의 수를 구하기로 하였습니다. 예를 들어서 손님께 5원을 거슬러 줘야 하고 1원, 2원, 5원이 있다면 ...
문제링크 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...
문제링크 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] + ...