2149. Rearrange Array Elements by Sign

Problem Statement

You are given a 0-indexed integer array nums of even length consisting of an equal number of positive and negative integers.

You should rearrange the elements of nums such that the modified array follows the given conditions:

  1. Every consecutive pair of integers have opposite signs.

  2. For all integers with the same sign, the order in which they were present in nums is preserved.

  3. The rearranged array begins with a positive integer.

Return the modified array after rearranging the elements to satisfy the aforementioned conditions.

Example 1:

Input: nums = [3,1,-2,-5,2,-4]
Output: [3,-2,1,-5,2,-4]
Explanation:
The positive integers in nums are [3,1,2]. The negative integers are [-2,-5,-4].
The only possible way to rearrange them such that they satisfy all conditions is [3,-2,1,-5,2,-4].
Other ways such as [1,-2,2,-5,3,-4], [3,1,2,-2,-5,-4], [-2,3,-5,1,-4,2] are incorrect because they do not satisfy one or more conditions.  

Example 2:

Input: nums = [-1,1]
Output: [1,-1]
Explanation:
1 is the only positive integer and -1 the only negative integer in nums.
So nums is rearranged to [1,-1].

Constraints:

  • 2 <= nums.length <= 2 * 105

  • nums.length is even

  • 1 <= |nums[i]| <= 105

  • nums consists of equal number of positive and negative integers.

Intuition

BruteForce :
Maintain two array and store
Later iterate and store at correct position

Optimal :

Maintain two pointers pos and neg as positive position starts at 0 Incr by 2 
Similarly for neg = 1 and incr by 2 everytime

https://leetcode.com/problems/rearrange-array-elements-by-sign/description/

https://www.youtube.com/watch?v=h4aBagy4Uok&ab_channel=takeUforward

Approach 1:

BruteForce

TC =  N+N
SC =  N
C++
class Solution {
public:
    vector<int> rearrangeArray(vector<int>& nums) {
        int n = nums.size();
        vector<int> pos, neg, ans;

        for(int i=0; i<nums.size(); i++){
            if(nums[i]>0)
                pos.push_back(nums[i]);

            else
                neg.push_back(nums[i]);
        }

        for(int i=0; i<n/2; i++){
            ans.push_back(pos[i]);
            ans.push_back(neg[i]);
        }

        return ans;
    }
};

Approach 2:

Optimal

TC =  N
SC =  N
C++
class Solution {
public:
    vector<int> rearrangeArray(vector<int>& nums) {
        int n = nums.size();
        vector<int> ans(n);
        int pos = 0, neg = 1;


        for(int i=0; i<nums.size(); i++){
            if(nums[i] > 0){
                ans[pos] = nums[i];
                pos += 2;
            }

            else{
                ans[neg] = nums[i];
                neg += 2;
            }
        }

        return ans;
    }
};

Approach 3:

C++

Approach 4:

C++

Similar Problems

Last updated