Welcome to Subscribe On Youtube

Formatted question description: https://leetcode.ca/all/724.html

Level

Easy

Description

Given an array of integers nums, write a method that returns the “pivot” index of this array.

We define the pivot index as the index where the sum of the numbers to the left of the index is equal to the sum of the numbers to the right of the index.

If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.

Example 1:

Input:

nums = [1, 7, 3, 6, 5, 6]

Output: 3

Explanation:

The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3.

Also, 3 is the first index where this occurs.

Example 2:

Input:

nums = [1, 2, 3]

Output: -1

Explanation:

There is no index that satisfies the conditions in the problem statement.

Note:

  • The length of nums will be in the range [0, 10000].
  • Each element nums[i] will be an integer in the range [-1000, 1000].

Solution

Maintain the sums in the left subarray and the right subarray. Initially, the candidate pivot index is 0, so the left subarray has length 0 and the right subarray has length nums.length - 1. If the left subarray sum equals the right subarray sum, return the current index as the pivot index. Otherwise, add the candidate pivot index by 1 and update the left subarray sum and the right subarray sum. If at a time the left subarray sum equals the right subarray sum, return the current index as the pivot index. If all candidate pivot indices are checked and no pivot index exists, return -1.

  • /**
    
     Given an array of integers nums, write a method that returns the "pivot" index of this array.
    
     We define the pivot index as the index where the sum of the numbers to the left of the index is equal to the sum of the numbers to the right of the index.
    
     If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.
    
     Example 1:
     Input:
     nums = [1, 7, 3, 6, 5, 6]
     Output: 3
     Explanation:
     The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3.
     Also, 3 is the first index where this occurs.
    
     Example 2:
     Input:
     nums = [1, 2, 3]
     Output: -1
     Explanation:
     There is no index that satisfies the conditions in the problem statement.
     Note:
    
     The length of nums will be in the range [0, 10000].
     Each element nums[i] will be an integer in the range [-1000, 1000].
    
     */
    
    public class Find_Pivot_Index {
    
        public static void main(String[] args) {
            Find_Pivot_Index out = new Find_Pivot_Index();
            Solution s = out.new Solution();
    
            System.out.println(s.pivotIndex(new int[]{1, 7, 3, 6, 5, 6}));
        }
    
        class Solution {
            public int pivotIndex(int[] nums) {
    
                if (nums == null || nums.length == 0) {
                    return -1;
                }
    
                // from left to current index, sum all, exclude current value
                int[] fromLeft = new int[nums.length];
                for (int i = 1; i < nums.length; i++) {
                    // i=0, sum is 0 since it has no left
                    fromLeft[i] = nums[i - 1] + fromLeft[i - 1];
                }
    
                int[] fromRight = new int[nums.length];
                for (int i = nums.length - 2; i >= 0; i--) {
                    // i=length-1 is 0, it has no right
                    fromRight[i] = nums[i + 1] + fromRight[i + 1];
                }
    
                for (int i = 0; i < nums.length; i++) {
                    if (fromLeft[i] == fromRight[i]) {
                        return i;
                    }
                }
    
                return -1;
            }
        }
    }
    
    ############
    
    class Solution {
        public int pivotIndex(int[] nums) {
            int left = 0, right = Arrays.stream(nums).sum();
            for (int i = 0; i < nums.length; ++i) {
                right -= nums[i];
                if (left == right) {
                    return i;
                }
                left += nums[i];
            }
            return -1;
        }
    }
    
  • // OJ: https://leetcode.com/problems/find-pivot-index
    // Time: O(N)
    // Space: O(1)
    class Solution {
    public:
        int pivotIndex(vector<int>& nums) {
            if (nums.empty()) return -1;
            int sum = accumulate(nums.begin(), nums.end(), 0) - nums[0];
            int left = 0;
            for (int i = 0; i < nums.size(); ++i) {
                if (left == sum) return i;
                left += nums[i];
                if (i + 1 < nums.size()) sum -= nums[i + 1];
            }
            return -1;
        }
    };
    
  • class Solution:
        def pivotIndex(self, nums: List[int]) -> int:
            s, presum = sum(nums), 0
            for i, v in enumerate(nums):
                if (presum << 1) == s - v:
                    return i
                presum += v
            return -1
    
    ############
    
    class Solution(object):
        def pivotIndex(self, nums):
            """
            :type nums: List[int]
            :rtype: int
            """
            if len(nums) == 0:
                return -1
            left = 0
            right = sum(nums)
            for i in range(len(nums)):
                if i != 0:
                    left += nums[i - 1]
                right -= nums[i]
                if left == right:
                    return i
            return -1
    
  • func pivotIndex(nums []int) int {
    	var left, right int
    	for _, x := range nums {
    		right += x
    	}
    	for i, x := range nums {
    		right -= x
    		if left == right {
    			return i
    		}
    		left += x
    	}
    	return -1
    }
    
  • function pivotIndex(nums: number[]): number {
        let left = 0,
            right = nums.reduce((a, b) => a + b);
        for (let i = 0; i < nums.length; ++i) {
            right -= nums[i];
            if (left == right) {
                return i;
            }
            left += nums[i];
        }
        return -1;
    }
    
    
  • /**
     * @param {number[]} nums
     * @return {number}
     */
    var pivotIndex = function (nums) {
        let left = 0,
            right = nums.reduce((a, b) => a + b);
        for (let i = 0; i < nums.length; ++i) {
            right -= nums[i];
            if (left == right) {
                return i;
            }
            left += nums[i];
        }
        return -1;
    };
    
    
  • class Solution {
        public int pivotIndex(int[] nums) {
            if (nums == null || nums.length == 0)
                return -1;
            int sum = 0;
            for (int num : nums)
                sum += num;
            int length = nums.length;
            int leftSum = 0, rightSum = sum - nums[0];
            if (leftSum == rightSum)
                return 0;
            for (int i = 1; i < length; i++) {
                leftSum += nums[i - 1];
                rightSum -= nums[i];
                if (leftSum == rightSum)
                    return i;
            }
            return -1;
        }
    }
    
    ############
    
    class Solution {
        public int pivotIndex(int[] nums) {
            int left = 0, right = Arrays.stream(nums).sum();
            for (int i = 0; i < nums.length; ++i) {
                right -= nums[i];
                if (left == right) {
                    return i;
                }
                left += nums[i];
            }
            return -1;
        }
    }
    
  • // OJ: https://leetcode.com/problems/find-pivot-index
    // Time: O(N)
    // Space: O(1)
    class Solution {
    public:
        int pivotIndex(vector<int>& nums) {
            if (nums.empty()) return -1;
            int sum = accumulate(nums.begin(), nums.end(), 0) - nums[0];
            int left = 0;
            for (int i = 0; i < nums.size(); ++i) {
                if (left == sum) return i;
                left += nums[i];
                if (i + 1 < nums.size()) sum -= nums[i + 1];
            }
            return -1;
        }
    };
    
  • class Solution:
        def pivotIndex(self, nums: List[int]) -> int:
            s, presum = sum(nums), 0
            for i, v in enumerate(nums):
                if (presum << 1) == s - v:
                    return i
                presum += v
            return -1
    
    ############
    
    class Solution(object):
        def pivotIndex(self, nums):
            """
            :type nums: List[int]
            :rtype: int
            """
            if len(nums) == 0:
                return -1
            left = 0
            right = sum(nums)
            for i in range(len(nums)):
                if i != 0:
                    left += nums[i - 1]
                right -= nums[i]
                if left == right:
                    return i
            return -1
    
  • func pivotIndex(nums []int) int {
    	var left, right int
    	for _, x := range nums {
    		right += x
    	}
    	for i, x := range nums {
    		right -= x
    		if left == right {
    			return i
    		}
    		left += x
    	}
    	return -1
    }
    
  • function pivotIndex(nums: number[]): number {
        let left = 0,
            right = nums.reduce((a, b) => a + b);
        for (let i = 0; i < nums.length; ++i) {
            right -= nums[i];
            if (left == right) {
                return i;
            }
            left += nums[i];
        }
        return -1;
    }
    
    
  • /**
     * @param {number[]} nums
     * @return {number}
     */
    var pivotIndex = function (nums) {
        let left = 0,
            right = nums.reduce((a, b) => a + b);
        for (let i = 0; i < nums.length; ++i) {
            right -= nums[i];
            if (left == right) {
                return i;
            }
            left += nums[i];
        }
        return -1;
    };
    
    

All Problems

All Solutions