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

Leetcode Problem:

Summary

  • The problem is to find the number of possible non-empty sequences of letters that can be made using the letters printed on the tiles.

Approach

  • The solution uses a recursive approach with backtracking
  • It checks all possible combinations of letters and stores the valid sequences in a set.

Complexity

  • O(2^n * n) where n is the length of the tiles string

Explanation

  • The solution uses a recursive function checkCnt to generate all possible sequences of letters
  • It uses a set to store the valid sequences and a visited array to prevent duplicate sequences
  • The function checks all possible combinations of letters and adds the valid sequences to the set
  • Finally, it returns the size of the set, which represents the number of possible non-empty sequences of letters.

Solution Code:


class Solution {
public:
    bool visited[7];
    set s;
    void checkCnt(string &tiles, string letters, int length, int depth){
        if(length == depth){
            s.insert(letters);
            return;
        }
        for(int i = 0 ; i < tiles.size(); i++){
            if(visited[i]) continue;
            visited[i] = true;
            checkCnt(tiles, letters + tiles[i], length + 1, depth);
            visited[i] = false;
        }
    }   
    int numTilePossibilities(string tiles) {
        for(int i = 1; i <= tiles.size(); i++){
            checkCnt(tiles, "", 0, i);
        }
        return s.size();
    }
};
블로그 이미지

짬뽕얼큰하게

,

Maximum Width Ramp

알고리즘 2025. 2. 17. 08:48

Leetcode Problem:

Summary

  • The problem requires finding the maximum width of a ramp in an integer array
  • A ramp is defined as a pair (i, j) where i < j and nums[i] <= nums[j]
  • The width of the ramp is j - i
  • The goal is to find the maximum width of such a ramp in the given array.

Approach

  • Binary Search Approach: The solution uses a binary search approach to find the maximum width of the ramp
  • It initializes two pointers, one at the start and one at the end of the array
  • It calculates the middle index and checks if there is a ramp starting from that index
  • If there is, it moves the left pointer to the right of the middle index
  • Otherwise, it moves the right pointer to the left of the middle index
  • This process continues until the left pointer is greater than the right pointer.

Complexity

  • O(n log n) due to the binary search, where n is the size of the array

Explanation

  • The solution starts by initializing two pointers, one at the start and one at the end of the array
  • It calculates the middle index and checks if there is a ramp starting from that index
  • If there is, it moves the left pointer to the right of the middle index
  • Otherwise, it moves the right pointer to the left of the middle index
  • This process continues until the left pointer is greater than the right pointer
  • The solution uses a binary search approach to find the maximum width of the ramp, which allows it to efficiently search for the ramp
  • The time complexity of the solution is O(n log n) due to the binary search, where n is the size of the array.

Solution Code:


class Solution {
public:
    int maxWidthRamp(vector& nums) {
        int l = 0;
        int r = nums.size() - 1;
        int ans = 0;
        while(l <= r){
            int win_size = (l + r) / 2;
            bool success = false;
            int minValue = 5*10000;
            for(int i = 0; i < nums.size()- win_size; i++){
                minValue = min(minValue, nums[i]);
                if(minValue <= nums[i+win_size]){
                    success = true;
                }
            }
            if(success){
                l = win_size + 1;
                ans = win_size;
            } else {
                r = win_size - 1;
            }

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

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • The problem is to find the minimum number of swaps required to make a given string of even length balanced.

Approach

  • The approach used is to use a stack data structure to keep track of the opening brackets
  • The stack is used to check if a closing bracket matches with the top of the stack
  • If a match is found, the top of the stack is popped
  • If no match is found, the current bracket is pushed into the stack
  • After processing the entire string, the minimum number of swaps required to balance the string is calculated by dividing the number of remaining opening brackets by 2 and adding 1, and then dividing by 2.

Complexity

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

Explanation

  • The provided solution code uses a stack to keep track of the opening brackets
  • The stack is initialized as a private member of the Solution class
  • In the minSwaps function, the code iterates over the string and checks if the stack is empty
  • If the stack is empty, the current character is pushed into the stack
  • If the stack is not empty, the top of the stack is checked with the current character
  • If they match, the top of the stack is popped
  • If they do not match, the current character is pushed into the stack
  • After processing the entire string, the minimum number of swaps required to balance the string is calculated by dividing the number of remaining opening brackets by 2 and adding 1, and then dividing by 2.

Solution Code:


struct _stack{
    char arr[1000001];
    int top;
    _stack(){
        top = 0;
    }
    void push(char a){
        arr[top++] = a;
    }
    bool empty(){
        return top == 0;
    }
    char peek(){
        if(empty()) return -1;
        return arr[top-1];
    }
    void pop(){
        if(empty()) return;
        top--;
    }
};

class Solution {
public:
    _stack st;
    int minSwaps(string s) {
        int res = 0;
        for(int i = 0 ; i < s.size(); i++){
            if(st.empty()){
                st.push(s[i]);
                continue;
            }
            char a = st.peek();
            char b = s[i];
            if(a == '[' && b == ']'){
                st.pop();
                continue;
            } else{
                st.push(b);
            }
        }
        return (st.top/2+1)/2;
    }
};

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

Letter Tile Possibilities  (0) 2025.02.17
Maximum Width Ramp  (1) 2025.02.17
Minimum String Length After Removing Substrings  (0) 2025.02.17
Sentence Similarity III  (0) 2025.02.17
Construct the Lexicographically Largest Valid Sequence  (0) 2025.02.16
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • Given a string of uppercase English letters, find the minimum possible length of the resulting string after removing any occurrences of the substrings "AB" or "CD".

Approach

  • This problem is solved using a recursive approach where we try to remove the first occurrence of "AB" or "CD" from the string and then check if the resulting string can be further reduced
  • If not, we return the current minimum length.

Complexity

  • O(2^n) due to the recursive calls, where n is the length of the input string.

Explanation

  • The solution starts by initializing the minimum length to the length of the input string
  • Then, it iterates over the string and checks for the first occurrence of "AB" or "CD"
  • If found, it recursively calls the function with the substring obtained by removing the found substring from the start of the string, and updates the minimum length if the resulting string has a smaller length
  • This process continues until no more occurrences of "AB" or "CD" can be found in the string.

Solution Code:


class Solution {
public:
    int minLength(string s) {
        int ans = s.size();
        for(int i = 0 ; i < s.size(); i++){
            if (s.substr(i, 2).compare("AB") == 0){
                ans = min(ans, minLength(s.substr(0, i) + s.substr(i+2)));
                break;
            } else if (s.substr(i, 2).compare("CD") == 0){
                ans = min(ans, minLength(s.substr(0, i) + s.substr(i+2)));
                break;
            }
        }
        return ans;
    }
};
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • Two sentences are considered similar if it is possible to insert an arbitrary sentence (possibly empty) inside one of these sentences such that the two sentences become equal.

Approach

  • The approach is to first find the longest common prefix of the two sentences
  • If the prefix is empty, the sentences are not similar
  • Otherwise, we check if the remaining part of the shorter sentence can be inserted between the words of the longer sentence to make them equal.

Complexity

  • O(n), where n is the length of the shorter sentence.

Explanation

  • We first find the longest common prefix of the two sentences by iterating through the characters of the sentences
  • If the prefix is empty, we return false
  • Otherwise, we check if the remaining part of the shorter sentence can be inserted between the words of the longer sentence to make them equal
  • We do this by iterating through the remaining part of the shorter sentence and checking if each word matches the corresponding word in the longer sentence
  • If we find a mismatch, we return false
  • If we reach the end of the remaining part of the shorter sentence without finding a mismatch, we return true.

Solution Code:


class Solution {
public:
    bool areSentencesSimilar(string sentence1, string sentence2) {
        string t;
        if (sentence1.size() < sentence2.size()){
            t = sentence1;
            sentence1 = sentence2;
            sentence2 = t;
        }
        int lastSpace = -1;
        int i = 0;
        for( ; i < sentence2.size(); i++){
            if(sentence2[i] == sentence1[i] && sentence2[i] == ' '){
                lastSpace = i;
            }
            if (sentence1[i] != sentence2[i]) break;
        }
        if (i == sentence2.size() && sentence1[i] == ' ') return true;
        int s1_len = sentence1.size();
        int s2_len = sentence2.size();
        int before_idx = sentence1.size() - (s2_len - lastSpace);
        if (before_idx >= 0 && sentence1[before_idx] != ' ') return false;
        for(i = lastSpace+1; i < s2_len; i++){
            int s1_idx = sentence1.size() - (s2_len - i);
            if(s1_idx >= s1_len) return false;
            if(sentence1[s1_idx] != sentence2[i]) return false;
        }
        return true;
    }
};
블로그 이미지

짬뽕얼큰하게

,