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

'2025/02/26'에 해당되는 글 2건

Leetcode Problem:

Summary

  • Given an integer array, find the maximum absolute sum of any subarray.

Approach

  • Use two pointers to track the maximum and minimum prefix sum, then return the maximum of the two absolute values.

Complexity

  • O(n) where n is the number of elements in the array

Explanation

  • The solution works by iterating over the array twice, once to find the maximum prefix sum and once to find the minimum prefix sum
  • The maximum prefix sum is updated whenever a positive number is encountered, and the minimum prefix sum is updated whenever a negative number is encountered
  • The maximum of the two absolute values is then returned as the result.

Solution Code:


class Solution {
public:
    int maxAbsoluteSum(vector& nums) {
        int r = 0;
        int l = 0;
        int plusMax = 0;
        int prefixSum = 0;
        for(int num : nums){
            prefixSum += num;
            if(prefixSum < 0) prefixSum = 0;
            plusMax = max(plusMax, prefixSum);
        }

        int minusMin = 0;
        prefixSum = 0;
        for(int num:nums){
            prefixSum += num;
            if(prefixSum > 0) prefixSum = 0;
            minusMin = min(minusMin, prefixSum);
        }
        return plusMax > abs(minusMin) ? plusMax : abs(minusMin);
    }
};
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • Find the number of subarrays with an odd sum in a given array of integers.

Approach

  • The solution uses a prefix sum approach to keep track of the current sum of the subarray
  • It also uses two counters, evenCount and oddCount, to keep track of the number of subarrays with even and odd sums respectively
  • The time complexity is O(n) where n is the size of the array.

Complexity

  • O(n)

Explanation

  • The solution iterates over the array and for each element, it checks if the prefix sum is odd or even
  • If it's odd, it increments the oddCount and adds the evenCount to the answer
  • If it's even, it increments the evenCount and adds the oddCount to the answer
  • The answer is then taken modulo MOD to prevent overflow
  • The solution returns the final answer.

Solution Code:


class Solution {
public:
    #define MOD 1000000007
    int numOfSubarrays(vector& arr) {
        
        long long prefixSum = 0;
        int evenCount = 1;
        int oddCount = 0;
        int ans = 0;
        for(int i = 0 ; i < arr.size(); i++){
            prefixSum += arr[i];

            if(prefixSum & 1){
                oddCount++;
                ans += evenCount;
            } else{
                evenCount++;
                ans += oddCount;
            }
            ans %= MOD;
        }
        return ans;
    }
};

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

Maximum Average Pass Ratio  (0) 2025.02.27
Maximum Absolute Sum of Any Subarray  (0) 2025.02.26
Continuous Subarrays  (0) 2025.02.25
Find Score of an Array After Marking All Elements  (0) 2025.02.25
Take Gifts From the Richest Pile  (0) 2025.02.25
블로그 이미지

짬뽕얼큰하게

,