LeetCode 1578 Solution

LeetCode 1578 Solution

Minimum Time to make rope colorful

#greedy #medium

Alice has n balloons arranged on a rope. You are given a 0-indexed string colors where colors[i] is the color of the ith balloon.

Alice wants the rope to be colorful. She does not want two consecutive balloons to be of the same color, so she asks Bob for help. Bob can remove some balloons from the rope to make it colorful. You are given a 0-indexed integer array neededTime where neededTime[i] is the time (in seconds) that Bob needs to remove the ith balloon from the rope.

Return the minimum time Bob needs to make the rope colorful.

Example 1:

  • Input: colors = "abaac", neededTime = [1,2,3,4,5]
  • Output: 3
  • Explanation: In the above image, 'a' is blue, 'b' is red, and 'c' is green.
    Bob can remove the blue balloon at index 2. This takes 3 seconds.
    There are no longer two consecutive balloons of the same color. Total time = 3.

python

class Solution:
    def minCost(self, colors: str, neededTime: List[int]) -> int:
        result = 0
        flag = None  
        record = []  

        for c, t in zip(colors, neededTime):
            if c != flag:  
                if record: 
                    result += sum(record) - max(record)
                record = [t] 
                flag = c  
            else:
                record.append(t) 

        if record:  
            result += sum(record) - max(record)

        return result

The consecutive block of colors needs to be minimized to just one color and one neededTime. So if the flag is same as the front parts of colors, just append it to the record and flag continues. But if the flag differentialize part appear, sum(record) - max(record) execute and reinitialize the flag and record.

if record check whether the record list is empty or not. If it's empty, it means that the record is reinitialized and needs to be full with current colors.

As the solution search zipped list for just one time and search all not just needed part, it is greedy algorithm. And time and space complexity of this code is both $O(n)$.

Read more

airflow 구성하고 vscode로 코딩하기

맥에서 했으면 훨씬 구성이 쉬웠겠지만, 그리고 poetry로 했으면 훨씬 쉬웠겠지만 워낙 규모가 있는 라이브러리이다 보니 과정이 어려워 다른 참조들을 보면서 따라했다. 기본적으로 poetry랑 쓰기 어려운 이유는 airflow 내부의 라이브러리에 따라 poetry가 버전을 참조하지 못해서 에러가 나는 경우가 존재한다고 한다. 또한 하나의 문제는 mac에서는 그냥 리눅스가 존재하지만 윈도우에서 하려면 윈도우용 linux인

[Json] dump vs dumps

json은 javascript object notation의 줄임말로 웹 어플리케이션에서 구조화된 데이터를 표현하기 위한 string 기반의 포맷이다. 서버에서 클라인트로 데이터를 전송하여 표현하거나, 그 반대로 클라이언트에서 서버로 보내는 경우들에 사용된다. javascript 객체 문법과 굉장히 유사하지만 워낙에 범용성이 넓게 설계되어 있어서 다른 언어들에도 많이 사용된다. 기본적으로 python 에는 json 이 내장 모듈이다. 바로 import json해주면