coding-interview|December 23, 2020|2 min read

Find the maximum sum of any continuous subarray of size K

TL;DR

Sliding window avoids recomputing the entire subarray sum — subtract the element leaving the window and add the one entering. Reduces O(n*k) brute force to O(n).

Find the maximum sum of any continuous subarray of size K

Introduction

You are given an array of integers with size N, and a number K. Find the maximum sum of continuous subarray of size K.

Example

Input: [1, 2, 6, 2, 4, 1], k=3 
Output: 12
Explanation: Subarray with maximum sum is [6, 2, 4].

Solution (Brute Force)

Brute Force Solution

You need to keep sum of the subarray of size=k all the time, and keep on iterating.

Code

public int findMaxSum(int[] arr, int k) {
  int max=0;
  for (int i=0; i<=arr.length-k; i++) {
    int sum_k = 0;
    for (int j=i; j<i+k; j++) {
      sum_k += arr[j];
    }
    max = Math.max(max, sum_k);
  }
  return max;
}

Complexity

There are two loops

  1. n-k times != n
  2. k times

Total of O(nk)*

Solution (Sliding Window Pattern)

If you observe problem and above solution closely,

  • you need to keep continuous array
  • size should be K

When you first calculate sum of the first window size of K. You already have the sum of previous window. To get the sum of next window. You need to remove first number of previous window, and add next number. So effectively you are using the sum of previous window sum. You need not to go to calculate whole sum again.

Example

1 2 3 4 5

First window = 1 2 3, sum=6

For next window, subtract 1 from sum, and add 4 to remaining sum.
Second window = 2 3 4
  i.e. 6 - 1 + 4 = 9

In this way, we are effectively moving our window from begining to end and we need to keep the max sum available till each window.

Lets look at the code.

Code

public int findMaxSum(int[] arr, int k) {
  int max = 0;
  int left = 0;
  int right = 0;

  int window_sum = 0;
  while (right < arr.length) {
    window_sum += arr[right];
    if (right >= k) {
      max = Math.max(max, window_sum);

      //subtract first number of previous widow
      window_sum -= arr[left];
      
      //move left pointer to next number
      left ++;
    }
  }

  return max;
}

We are keeping two pointers for window left and right. On completing the window size, we subtract first number of last window and keep a tab of the max sum available.

Complexity

We are iterating over array just once. Its O(n)

Related Posts

System Design Interview Vocabulary Notes

System Design Interview Vocabulary Notes

In this post, we will see some of the frequently used concepts/vocabulary in…

Coding Interview - Facebook System Design Interview Types

Coding Interview - Facebook System Design Interview Types

System design interview is pretty common these days, specially if you are having…

What FAANG companies expect in their interview from candidates

What FAANG companies expect in their interview from candidates

Its every software engineer’s dream to work with the big FAANG companies…

Magical usage of Bitwise operators - Get optimized solutions for many arithmatic problems

Magical usage of Bitwise operators - Get optimized solutions for many arithmatic problems

Introduction I will list some of the interesting usage of bitwise operators…

How to prepare for your next Coding Interview

How to prepare for your next Coding Interview

Here are some tips while preparing for your coding interviews. 1. Do study or…

Radix Sort Algorithm

Radix Sort Algorithm

A number consists of digits. Example: 843. Its a 3-digit number. Radix sort…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…