Categories:

Tags:



Problem

Given an array of integers nums, calculate the pivot index of this array.

The pivot index is the index where the sum of all the numbers strictly to the left of the index is equal to the sum of all the numbers strictly to the index’s right.

If the index is on the left edge of the array, then the left sum is 0 because there are no elements to the left. This also applies to the right edge of the array.

Return the leftmost pivot index. If no such index exists, return -1.

Constraints

  • 1 <= nums.length <= 104
  • -1000 <= nums[i] <= 1000

Solution

The problem Find Pivot Index can be solved by calculating left and right sums for all indexes and checking if they are equal.

Implementation

static const int fast_io = []()
{
    std::ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    return 0;
}();

class Solution
{
  public:
    int pivotIndex(vector<int> &nums)
    {
        int lsum = 0;
        int rsum = accumulate(nums.begin(), nums.end(), 0);

        for (int i = 0; i < nums.size(); i++)
        {
            rsum -= nums[i];
            if (lsum == rsum)
                return i;
            lsum += nums[i];
        }

        return -1;
    }
};