짬뽕얼큰하게의 맨땅에 헤딩 :: '2025/02/20 글 목록

Leetcode Problem:

Summary

  • Given an array of unique binary strings, return a binary string that does not appear in the array.

Approach

  • The solution uses a set data structure to store the binary numbers represented by the input strings
  • It then iterates over all possible binary numbers of the same length as the input strings, checks if each number is in the set, and returns the first number that is not in the set.

Complexity

  • O(2^n * n) where n is the length of the input strings

Explanation

  • The solution first converts each binary string to a decimal number using the `makeNum` function
  • It then stores these decimal numbers in a set
  • The `makeStr` function is used to convert a decimal number back to a binary string
  • The solution then iterates over all possible binary numbers of the same length as the input strings, checks if each number is in the set, and returns the first number that is not in the set
  • This approach ensures that the solution finds the first binary string that does not appear in the input array.

Solution Code:


class Solution {
public:
    int makeNum(string s){
        int num = 0;
        for(int i = 0 ; i < s.size(); i++){
            num *= 2;
            num += s[i] - '0';
        }
        return num;
    }
    string makeStr(int num, int length){
        string res = "";
        for(int i = 0 ; i < length; i++){
            res = string(1, '0'+(num %2)) + res;
            num /= 2;
        }
        return res;
    }
    bool set[1<<16];
    string findDifferentBinaryString(vector& nums) {
        int length = nums[0].size();
        for(int i = 0 ; i < nums.size(); i++){
            set[makeNum(nums[i])] = true;
        }
        for(int i = 0 ; i < (1 << 16); i++){
            if(set[i]){
                continue;
            }
            return makeStr(i, length);
        }
        return "";
    }
};

'알고리즘' 카테고리의 다른 글

Largest Combination With Bitwise AND Greater Than Zero  (0) 2025.02.21
Find if Array Can Be Sorted  (0) 2025.02.21
Minimum Number of Changes to Make Binary String Beautiful  (0) 2025.02.20
String Compression III  (0) 2025.02.20
Rotate String  (0) 2025.02.20
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • The problem requires to find the minimum number of changes required to make a binary string beautiful
  • A beautiful string is a string that can be partitioned into substrings with even length and only containing 1's or 0's.

Approach

  • The approach is to iterate over the string in steps of 2 and count the number of pairs of characters that are not the same
  • If the pair is not the same, it means that the string needs to be changed to make it beautiful, so we increment the result.

Complexity

  • O(n/2) = O(n), where n is the length of the string.

Explanation

  • The solution iterates over the string in steps of 2, which is because each pair of characters is considered together
  • If the pair of characters is not the same, it means that the string needs to be changed to make it beautiful, so we increment the result
  • The time complexity is O(n) because we are iterating over the string once.

Solution Code:


class Solution {
public:
    int minChanges(string s) {
        int res = 0;
        for(int i = 0 ; i < s.size(); i += 2){
            if ((s[i] == '0' && s[i+1] == '0') || (s[i] == '1' && s[i+1] == '1')){
                continue;
            }
            res++;
        }
        return res;
    }
};

'알고리즘' 카테고리의 다른 글

Find if Array Can Be Sorted  (0) 2025.02.21
Find Unique Binary String  (0) 2025.02.20
String Compression III  (0) 2025.02.20
Rotate String  (0) 2025.02.20
Delete Characters to Make Fancy String  (0) 2025.02.20
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • Given a string word, compress it using the algorithm where a maximum length prefix of a single character c repeating at most 9 times is removed, and the length of the prefix followed by c is appended to the compressed string.

Approach

  • The approach used is to iterate through the input string and whenever a different character is encountered, the length of the previous character's prefix is appended to the compressed string, followed by the character
  • This process continues until the end of the string.

Complexity

  • O(n), where n is the length of the input string, because each character in the string is visited once.

Explanation

  • The code uses a dynamic programming approach to solve the problem
  • It first initializes a counter cnt to keep track of the length of the current character's prefix
  • It then iterates through the input string, and whenever a different character is encountered, it calculates the length of the previous character's prefix (a and b) and appends it to the compressed string
  • The counter cnt is then reset to 0 and the process continues until the end of the string.

Solution Code:


class Solution {
public:
    int str_cnt[256];
    string compressedString(string word) {
        int cnt = 0;
        char beforeChar = 'a'-1;
        string res = "";
        for(char c : word) {
            if(c != beforeChar){
                int a = cnt / 9;
                for(int i = 0 ; i < a; i++){
                    res += "9" + string(1, beforeChar);
                }
                int b = cnt % 9;
                if (b > 0){
                    res += to_string(b) + string(1, beforeChar);
                }
                cnt = 0;
            }
            cnt++;
            beforeChar = c;
        }
        int a = cnt / 9;
        for(int i = 0 ; i < a; i++){
            res += "9" + string(1, beforeChar);
        }
        int b = cnt % 9;
        if (b > 0){
            res += to_string(b) + string(1, beforeChar);
        }
        
        return res;
    }
};

'알고리즘' 카테고리의 다른 글

Find Unique Binary String  (0) 2025.02.20
Minimum Number of Changes to Make Binary String Beautiful  (0) 2025.02.20
Rotate String  (0) 2025.02.20
Delete Characters to Make Fancy String  (0) 2025.02.20
Minimum Total Distance Traveled  (0) 2025.02.20
블로그 이미지

짬뽕얼큰하게

,

Rotate String

알고리즘 2025. 2. 20. 08:43

Leetcode Problem:

Summary

  • Given a string s and a goal, return true if s can become goal after some number of shifts on s.

Approach

  • The solution uses a while loop to simulate the process of shifting characters in s
  • It checks if the current state of s is equal to the goal after each shift
  • If it finds a match, it returns true
  • If it exhausts all possible shifts without finding a match, it returns false.

Complexity

  • O(n*m) where n is the length of s and m is the length of goal
  • This is because in the worst case, the solution checks every possible state of s, which is a permutation of the characters in s.

Explanation

  • The solution starts by initializing a variable N to the length of s
  • It then enters a while loop that runs N times
  • In each iteration, it checks if the current state of s is equal to the goal
  • If it is, it returns true
  • If not, it shifts the characters in s one position to the right by concatenating s with its first character and then removing the first character
  • This effectively moves the leftmost character to the rightmost position
  • If it exhausts all possible shifts without finding a match, it returns false.

Solution Code:


class Solution {
public:
    bool rotateString(string s, string goal) {
        int N = s.size();
        while(N--){
            if(s.compare(goal) == 0){
                return true;
            }
            s = s + s[0];
            s = s.substr(1);
        }

        return false;
    }
};
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • The problem is to delete the minimum possible number of characters from a string to make it a fancy string, where no three consecutive characters are equal.

Approach

  • The approach used is to iterate through the string and check for consecutive characters
  • If three consecutive characters are equal, they are skipped
  • Otherwise, they are added to the result string.

Complexity

  • O(n), where n is the length of the string

Explanation

  • The solution code initializes a string `ss` with the first character of the input string
  • It then iterates through the rest of the string, checking for consecutive characters
  • If three consecutive characters are equal, they are skipped
  • Otherwise, they are added to the result string
  • The code also keeps track of the count of consecutive characters and resets it when a different character is encountered.

Solution Code:


class Solution {
public:
    string makeFancyString(string s) {
        string ss = string(1,s[0]);
        int repeat_cnt = 1;
        char before_char = s[0];
        for(int i = 1 ;  i < s.size(); i++){
            if (before_char == s[i]){
                repeat_cnt++;
                if(repeat_cnt >= 3) continue;
            } else {
                repeat_cnt = 1;
            }
            ss += s[i];
            before_char = s[i];
        }
        return ss;
    }
};
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • Minimum Total Distance for Robots to Reach Factories

Approach

  • Dynamic Programming with Memoization

Complexity

  • O(n*m*log(n)+m*log(m))

Explanation

  • This solution sorts the robots and factories by position, then uses dynamic programming with memoization to calculate the minimum total distance
  • The `calculateMinDistance` function recursively tries two options: assigning the current robot to the current factory and skipping the current factory for the current robot
  • The minimum of these two options is stored in the memo table to avoid repeated calculations.

Solution Code:


class Solution {
public:
    long long minimumTotalDistance(vector& robot,
                                   vector>& factory) {
        // Sort robots and factories by position
        sort(robot.begin(), robot.end());
        sort(factory.begin(), factory.end());

        // Flatten factory positions according to their capacities
        vector factoryPositions;
        for (auto& f : factory)
            for (int i = 0; i < f[1]; i++) factoryPositions.push_back(f[0]);

        int robotCount = robot.size(), factoryCount = factoryPositions.size();
        vector> memo(robotCount,
                                       vector(factoryCount, -1));

        // Recursively calculate minimum total distance with memoization
        return calculateMinDistance(0, 0, robot, factoryPositions, memo);
    }

    long long calculateMinDistance(int robotIdx, int factoryIdx,
                                   vector& robot,
                                   vector& factoryPositions,
                                   vector>& memo) {
        // All robots assigned
        if (robotIdx == robot.size()) return 0;
        // No factories left to assign
        if (factoryIdx == factoryPositions.size()) return 1e12;
        // Check memo
        if (memo[robotIdx][factoryIdx] != -1) return memo[robotIdx][factoryIdx];

        // Option 1: Assign current robot to current factory
        long long assign = abs(robot[robotIdx] - factoryPositions[factoryIdx]) +
                           calculateMinDistance(robotIdx + 1, factoryIdx + 1,
                                                robot, factoryPositions, memo);

        // Option 2: Skip current factory for the current robot
        long long skip = calculateMinDistance(robotIdx, factoryIdx + 1, robot,
                                              factoryPositions, memo);

        return memo[robotIdx][factoryIdx] =
                   min(assign, skip);  // Take the minimum and store in memo
    }
};
블로그 이미지

짬뽕얼큰하게

,