Arrays January 20 ,2026

Minimum Operations to Make an Array Alternating

Problem Statement

You are given an integer array nums.

An array is called alternating if:

  • For all even indices i, nums[i] are equal
  • For all odd indices i, nums[i] are equal
  • Value at even indices ≠ value at odd indices

In one operation, you can change any element to any value.

Return the minimum number of operations required to make the array alternating.

Example 1

Input
nums = [3,1,3,2,4,3]

Output
3

Explanation

  • Even indices → [3,3,4]
  • Odd indices → [1,2,3]
  • Best choice:
    • Even → 3
    • Odd → 1
  • Changes needed = 3

Example 2

Input
nums = [1,2,2,2,2]

Output
2

Why This Problem Is Important

  • Tests frequency counting
  • Greedy decision making
  • Edge case handling (same dominant values)
  • Common interview problem (Google, Amazon)

Key Observation

  • Even indices and odd indices are independent
  • Count frequencies separately for:
    • Even positions
    • Odd positions
  • Choose most frequent values
  • If top values clash, use second best

Approach 1: Frequency Count + Greedy (Optimal)

Idea

  1. Count frequency of numbers at even indices
  2. Count frequency of numbers at odd indices
  3. Pick the most frequent value for each
  4. If both values are different → optimal
  5. If same → try second best option

Time and Space Complexity

  • Time: O(n)
  • Space: O(n)

Python Implementation

from collections import Counter

def minimumOperations(nums):
    n = len(nums)
    if n <= 1:
        return 0

    even = Counter()
    odd = Counter()

    for i in range(n):
        if i % 2 == 0:
            even[nums[i]] += 1
        else:
            odd[nums[i]] += 1

    even_common = even.most_common()
    odd_common = odd.most_common()

    even_val, even_freq = even_common[0]
    odd_val, odd_freq = odd_common[0]

    if even_val != odd_val:
        return n - (even_freq + odd_freq)

    even_second = even_common[1][1] if len(even_common) > 1 else 0
    odd_second = odd_common[1][1] if len(odd_common) > 1 else 0

    return min(
        n - (even_freq + odd_second),
        n - (odd_freq + even_second)
    )

C++ Implementation

#include 
using namespace std;

int minimumOperations(vector& nums) {
    int n = nums.size();
    if (n <= 1) return 0;

    unordered_map even, odd;

    for (int i = 0; i < n; i++) {
        if (i % 2 == 0) even[nums[i]]++;
        else odd[nums[i]]++;
    }

    vector> e(even.begin(), even.end());
    vector> o(odd.begin(), odd.end());

    sort(e.begin(), e.end(), [](auto &a, auto &b){ return a.second > b.second; });
    sort(o.begin(), o.end(), [](auto &a, auto &b){ return a.second > b.second; });

    if (e[0].first != o[0].first)
        return n - (e[0].second + o[0].second);

    int e2 = e.size() > 1 ? e[1].second : 0;
    int o2 = o.size() > 1 ? o[1].second : 0;

    return min(
        n - (e[0].second + o2),
        n - (o[0].second + e2)
    );
}

Java Implementation

import java.util.*;

class Solution {
    public int minimumOperations(int[] nums) {
        int n = nums.length;
        if (n <= 1) return 0;

        Map even = new HashMap<>();
        Map odd = new HashMap<>();

        for (int i = 0; i < n; i++) {
            if (i % 2 == 0)
                even.put(nums[i], even.getOrDefault(nums[i], 0) + 1);
            else
                odd.put(nums[i], odd.getOrDefault(nums[i], 0) + 1);
        }

        List> e =
                new ArrayList<>(even.entrySet());
        List> o =
                new ArrayList<>(odd.entrySet());

        e.sort((a,b) -> b.getValue() - a.getValue());
        o.sort((a,b) -> b.getValue() - a.getValue());

        if (!e.get(0).getKey().equals(o.get(0).getKey()))
            return n - (e.get(0).getValue() + o.get(0).getValue());

        int e2 = e.size() > 1 ? e.get(1).getValue() : 0;
        int o2 = o.size() > 1 ? o.get(1).getValue() : 0;

        return Math.min(
            n - (e.get(0).getValue() + o2),
            n - (o.get(0).getValue() + e2)
        );
    }
}

JavaScript Implementation

function minimumOperations(nums) {
    if (nums.length <= 1) return 0;

    const even = new Map();
    const odd = new Map();

    nums.forEach((val, i) => {
        const map = i % 2 === 0 ? even : odd;
        map.set(val, (map.get(val) || 0) + 1);
    });

    const e = [...even.entries()].sort((a,b)=>b[1]-a[1]);
    const o = [...odd.entries()].sort((a,b)=>b[1]-a[1]);

    if (e[0][0] !== o[0][0])
        return nums.length - (e[0][1] + o[0][1]);

    const e2 = e[1]?.[1] || 0;
    const o2 = o[1]?.[1] || 0;

    return Math.min(
        nums.length - (e[0][1] + o2),
        nums.length - (o[0][1] + e2)
    );
}

C# Implementation

using System;
using System.Collections.Generic;
using System.Linq;

class Solution {
    public int MinimumOperations(int[] nums) {
        int n = nums.Length;
        if (n <= 1) return 0;

        var even = new Dictionary();
        var odd = new Dictionary();

        for (int i = 0; i < n; i++) {
            if (i % 2 == 0) {
                if (!even.ContainsKey(nums[i])) even[nums[i]] = 0;
                even[nums[i]]++;
            } else {
                if (!odd.ContainsKey(nums[i])) odd[nums[i]] = 0;
                odd[nums[i]]++;
            }
        }

        var e = even.OrderByDescending(x => x.Value).ToList();
        var o = odd.OrderByDescending(x => x.Value).ToList();

        if (e[0].Key != o[0].Key)
            return n - (e[0].Value + o[0].Value);

        int e2 = e.Count > 1 ? e[1].Value : 0;
        int o2 = o.Count > 1 ? o[1].Value : 0;

        return Math.Min(
            n - (e[0].Value + o2),
            n - (o[0].Value + e2)
        );
    }
}

Final Summary

  • Separate even and odd positions
  • Pick most frequent values greedily
  • Handle conflict using second best choice
  • Optimal and interview-friendly solution

Next Problem in the Series

Maximum Sum of Non-Adjacent Elements (Circular)
 


 

Sanjiv
0

You must logged in to post comments.

Related Blogs

Find the S...
Arrays February 02 ,2026

Find the Second Smal...

Array Data...
Arrays December 12 ,2025

Array Data Structure

Array Memo...
Arrays December 12 ,2025

Array Memory Represe...

Array Oper...
Arrays December 12 ,2025

Array Operations and...

Advantages...
Arrays December 12 ,2025

Advantages and Disad...

Arrays in...
Arrays December 12 ,2025

Arrays in C

Vector in...
Arrays December 12 ,2025

Vector in C++ STL

Arrays vs...
Arrays December 12 ,2025

Arrays vs ArrayList...

JavaScript...
Arrays December 12 ,2025

JavaScript Arrays

Binary Sea...
Arrays December 12 ,2025

Binary Search on Arr...

Two Pointe...
Arrays January 01 ,2026

Two Pointers Techniq...

Prefix Sum...
Arrays January 01 ,2026

Prefix Sum Technique

Sliding Wi...
Arrays January 01 ,2026

Sliding Window Techn...

Basics of...
Arrays January 01 ,2026

Basics of Hashing fo...

Traverse a...
Arrays January 01 ,2026

Traverse an Array

Find the S...
Arrays January 01 ,2026

Find the Sum of All...

Find the M...
Arrays January 01 ,2026

Find the Maximum Ele...

Find the M...
Arrays January 01 ,2026

Find the Minimum Ele...

Count Even...
Arrays January 01 ,2026

Count Even and Odd N...

Search an...
Arrays January 01 ,2026

Search an Element in...

Copy One A...
Arrays January 01 ,2026

Copy One Array into...

Reverse an...
Arrays January 01 ,2026

Reverse an Array

Print Alte...
Arrays January 01 ,2026

Print Alternate Elem...

Find the L...
Arrays January 01 ,2026

Find the Length of a...

Check if a...
Arrays January 01 ,2026

Check if an Array is...

Find the F...
Arrays January 01 ,2026

Find the First Eleme...

Find the L...
Arrays January 01 ,2026

Find the Last Elemen...

Count the...
Arrays January 01 ,2026

Count the Number of...

Replace Al...
Arrays January 01 ,2026

Replace All Elements...

Sum of Ele...
Arrays January 01 ,2026

Sum of Elements at E...

Sum of Ele...
Arrays January 01 ,2026

Sum of Elements at O...

Find the A...
Arrays January 01 ,2026

Find the Average of...

Print Arra...
Arrays January 01 ,2026

Print Array Elements...

Count the...
Arrays January 01 ,2026

Count the Number of...

Remove Dup...
Arrays January 01 ,2026

Remove Duplicate Ele...

Move All Z...
Arrays January 01 ,2026

Move All Zeros to th...

Rotate an...
Arrays January 01 ,2026

Rotate an Array by K...

Rotate an...
Arrays January 01 ,2026

Rotate an Array by O...

Check if T...
Arrays January 01 ,2026

Check if Two Arrays...

Merge Two...
Arrays January 01 ,2026

Merge Two Sorted Arr...

Find Missi...
Arrays January 01 ,2026

Find Missing Number...

Find Dupli...
Arrays January 01 ,2026

Find Duplicate Eleme...

Count Freq...
Arrays January 01 ,2026

Count Frequency of E...

Find the M...
Arrays January 01 ,2026

Find the Majority El...

Find All U...
Arrays January 01 ,2026

Find All Unique Elem...

Insert an...
Arrays January 01 ,2026

Insert an Element at...

Delete an...
Arrays January 01 ,2026

Delete an Element fr...

Find the I...
Arrays January 01 ,2026

Find the Index of an...

Find Union...
Arrays January 01 ,2026

Find Union of Two Ar...

Find Inter...
Arrays January 01 ,2026

Find Intersection of...

Sort an Ar...
Arrays January 01 ,2026

Sort an Array of 0s...

Find the L...
Arrays January 01 ,2026

Find the Largest Sum...

Kadane’s A...
Arrays January 01 ,2026

Kadane’s Algorithm (...

Two Sum Pr...
Arrays January 01 ,2026

Two Sum Problem

Subarray w...
Arrays January 01 ,2026

Subarray with Given...

Longest Su...
Arrays January 01 ,2026

Longest Subarray wit...

Rearrange...
Arrays January 01 ,2026

Rearrange Array Alte...

Leaders in...
Arrays January 01 ,2026

Leaders in an Array

Equilibriu...
Arrays January 01 ,2026

Equilibrium Index of...

Stock Buy...
Arrays January 01 ,2026

Stock Buy and Sell (...

Stock Buy...
Arrays January 01 ,2026

Stock Buy and Sell (...

Sort an Ar...
Arrays January 01 ,2026

Sort an Array of 0s,...

Find the M...
Arrays January 01 ,2026

Find the Majority El...

Find All P...
Arrays January 01 ,2026

Find All Pairs with...

Longest Co...
Arrays January 01 ,2026

Longest Consecutive...

Product of...
Arrays January 01 ,2026

Product of Array Exc...

Maximum Pr...
Arrays January 01 ,2026

Maximum Product Suba...

Find the F...
Arrays January 01 ,2026

Find the First Missi...

Count Inve...
Arrays January 01 ,2026

Count Inversions in...

Rearrange...
Arrays January 01 ,2026

Rearrange Array by S...

Check if A...
Arrays January 01 ,2026

Check if Array Can B...

Trapping R...
Arrays January 01 ,2026

Trapping Rain Water

Maximum Ci...
Arrays January 01 ,2026

Maximum Circular Sub...

Find Minim...
Arrays January 01 ,2026

Find Minimum in Rota...

Search in...
Arrays January 01 ,2026

Search in Rotated So...

Median of...
Arrays January 01 ,2026

Median of Two Sorted...

Merge Inte...
Arrays January 01 ,2026

Merge Intervals

Count Reve...
Arrays January 01 ,2026

Count Reverse Pairs

Longest Su...
Arrays January 01 ,2026

Longest Subarray wit...

Largest Re...
Arrays January 01 ,2026

Largest Rectangle in...

Maximum Su...
Arrays January 01 ,2026

Maximum Sum Rectangl...

Subarray S...
Arrays January 01 ,2026

Subarray Sum Equals...

Count Dist...
Arrays January 01 ,2026

Count Distinct Eleme...

Sliding Wi...
Arrays January 01 ,2026

Sliding Window Maxim...

Find K Max...
Arrays January 01 ,2026

Find K Maximum Eleme...

Minimum Nu...
Arrays January 01 ,2026

Minimum Number of Ju...

Chocolate...
Arrays January 01 ,2026

Chocolate Distributi...

Find All T...
Arrays January 01 ,2026

Find All Triplets Wi...

Kth Smalle...
Arrays January 01 ,2026

Kth Smallest Element...

Maximum Le...
Arrays January 01 ,2026

Maximum Length Biton...

Smallest S...
Arrays January 01 ,2026

Smallest Subarray wi...

Maximum Su...
Arrays January 01 ,2026

Maximum Sum Submatri...

Count Suba...
Arrays January 01 ,2026

Count Subarrays with...

Longest Ar...
Arrays January 01 ,2026

Longest Arithmetic S...

Find the M...
Arrays January 01 ,2026

Find the Median in a...

Split Arra...
Arrays January 01 ,2026

Split Array Largest...

Minimum Co...
Arrays January 01 ,2026

Minimum Cost to Make...

Maximum Pr...
Arrays January 01 ,2026

Maximum Product of T...

Longest Su...
Arrays January 01 ,2026

Longest Subarray wit...

Subarray w...
Arrays January 01 ,2026

Subarray with Maximu...

Find All S...
Arrays January 01 ,2026

Find All Subarrays w...

Partition...
Arrays January 01 ,2026

Partition Array into...

Maximum Ab...
Arrays January 01 ,2026

Maximum Absolute Dif...

Smallest M...
Arrays January 01 ,2026

Smallest Missing Num...

Find Repea...
Arrays January 01 ,2026

Find Repeating and M...

Maximum Le...
Arrays January 01 ,2026

Maximum Length Subar...

Count Suba...
Arrays January 01 ,2026

Count Subarrays with...

Kth Larges...
Arrays January 01 ,2026

Kth Largest Element...

Find Lexic...
Arrays January 01 ,2026

Find Lexicographical...

Find the S...
Arrays February 02 ,2026

Find the Second Larg...

Get In Touch

Kurki bazar Uttar Pradesh

+91-8808946970

techiefreak87@gmail.com