1353. Maximum Number of Events That Can Be Attended - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

You are given an array of events where each event is represented as a two-element array:
events[i] = [startDayᵢ, endDayᵢ].

An event i starts at startDayᵢ and ends at endDayᵢ. You can attend an event on any day d such that startDayᵢ ≤ d ≤ endDayᵢ, but you can attend at most one event per day.

Goal:
Return the maximum number of events you can attend.

Example 1

  • Input:
    events = [[1,2],[2,3],[3,4]]
    
  • Output:
    3
    
  • Explanation:
    You can attend all events:
    • Attend event [1,2] on day 1.
    • Attend event [2,3] on day 2.
    • Attend event [3,4] on day 3.

Example 2

  • Input:
    events = [[1,2],[2,3],[3,4],[1,2]]
    
  • Output:
    4
    
  • Explanation:
    Even though some events overlap, by choosing appropriate days you can attend:
    • Attend one event [1,2] on day 1.
    • Attend the other event [1,2] on day 2 (if possible, after choosing the best order).
    • Then attend [2,3] and [3,4] on subsequent days.

Example 3

  • Input:
    events = [[1,4],[4,4],[2,2],[3,4],[1,1]]
    
  • Output:
    4
    
  • Explanation:
    One way to attend 4 events is:
    • Attend event [1,1] on day 1.
    • Attend event [2,2] on day 2.
    • Attend event [3,4] on day 3.
    • Attend event [4,4] on day 4.

Constraints

  • 1 <= events.length <= 10⁵
  • 1 <= startDayᵢ <= endDayᵢ <= 10⁵

Hints for the Approach

  • Hint 1:
    Since you can attend only one event per day, try to schedule events so that you attend the one that ends the earliest on any given day. This opens up more days for future events.

  • Hint 2:
    Sorting events by their start day is useful. Then, use a data structure (like a min-heap) to always pick the event with the smallest end day that is available on a given day.

Approaches

Approach 1: Brute Force (Discussion)

One might consider checking every possible combination of events to see which combination yields the maximum count. For each day, try attending every possible event available and backtrack.
Why it's not ideal:

  • The number of events can be as large as 10⁵, making brute force or backtracking solutions computationally infeasible due to exponential time complexity.

Approach 2: Greedy with a Priority Queue (Optimal)

Idea:

  1. Sort the Events:
    Sort the events based on their start day. This lets you process events in the order in which they become available.

  2. Use a Min-Heap (Priority Queue):
    As you iterate through the days (from the earliest possible day to the maximum end day), do the following:

    • Add all events that start on the current day to the min-heap, where the heap is ordered by the event’s end day.

    • Remove expired events: Remove from the heap any events whose end day is before the current day.

    • Attend an event: If the heap is not empty, attend the event that ends earliest (pop from the heap) and count it as attended.

  3. Stop When All Days or Events Are Processed.

This greedy strategy is optimal because by always attending the event that ends the earliest, you leave as much room as possible for subsequent events.

Step-by-Step Walkthrough (Greedy Approach)

Consider the events:

events = [[1,2],[2,3],[3,4],[1,2]]

Step 1: Sort by Start Day
Sorted events:

[[1,2], [1,2], [2,3], [3,4]]

Step 2: Process Days and Use a Min-Heap

  • Day 1:

    • Add events starting on day 1 → Heap now contains events with end days 2 and 2.
    • Remove events that ended before day 1 (none in this case).
    • Attend the event with the smallest end day (pop one event with end day 2).
      Count = 1.
  • Day 2:

    • Add events starting on day 2 → Heap now contains the remaining event from day 1 (end day 2) and event [2,3] (end day 3).
    • Remove expired events: Remove any event with end day < 2. In this case, events with end day 2 are still valid on day 2.
    • Attend the event with the smallest end day (pop event with end day 2).
      Count = 2.
  • Day 3:

    • Add events starting on day 3 → Heap now contains event [2,3] (end day 3) and event [3,4] (end day 4).
    • Remove expired events: Remove events with end day < 3.
      The event with end day 3 is still valid on day 3.
    • Attend the event with the smallest end day (pop event with end day 3).
      Count = 3.
  • Day 4:

    • No new events starting on day 4.
    • Heap now contains event [3,4] (end day 4). Remove expired events: It is still valid on day 4.
    • Attend the event with the smallest end day (pop event with end day 4).
      Count = 4.
  • Result:
    Maximum events attended = 4.

Pseudocode

sort events by start day
initialize minHeap (empty)
count = 0
i = 0  // index for events

for day from 1 to max_end_day:
    while i < events.length and events[i].start <= day:
        add events[i].end to minHeap
        i++
    while minHeap is not empty and minHeap.peek() < day:
        remove element from minHeap  // remove expired events
    if minHeap is not empty:
        pop from minHeap  // attend the event that ends earliest
        count++

return count

Code Implementation

Python Implementation

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:
    • Sorting the events takes O(n log n).

    • The main loop iterates over days up to the maximum end day. However, each event is added to and removed from the heap at most once.

    • Overall, the time complexity is O(n log n + D), where D is the range of days; in worst-case scenarios, D could be large, but typically the heap operations dominate, leading to an effective O(n log n) time complexity.

  • Space Complexity:
    • The space needed for sorting and the min-heap is O(n).

Common Mistakes

  • Not Removing Expired Events:
    Failing to remove events from the heap that have already ended will lead to an incorrect count.

  • Incorrect Day Range:
    Not iterating through the full range of days (from day 1 to the maximum end day) might miss potential opportunities to attend events.

  • Heap Mismanagement:
    Not using a min-heap (or priority queue) to always select the event that ends earliest can lead to a suboptimal solution.

Edge Cases

  • No Events:
    If the events array is empty, the answer should be 0.

  • Single-Day Events:
    Events where start and end are the same. These should be handled correctly by the greedy approach.

  • Overlapping Events:
    Many events starting on the same day or overlapping heavily. The algorithm must choose the best one to attend on each day.

Alternative Variations

  • Events with Durations:
    What if events could span multiple days and you could attend part of an event? The strategy would need to adjust accordingly.

  • Weighted Events:
    If events had associated values (profits) and the goal was to maximize total profit instead of count, dynamic programming might be required.

  • Meeting Rooms II:
    Finding the minimum number of meeting rooms required given a set of meeting intervals.

  • Interval Scheduling:
    A classic greedy algorithm problem that involves selecting non-overlapping intervals to maximize the number of intervals selected.

  • Task Scheduling:
    Problems where tasks have deadlines and durations and you need to maximize the number of tasks completed.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What language is Meta?
Does Microsoft still do in-person interviews?
What is a software engineer vs developer?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;