Problem Description
A concert hall has n
rows numbered from 0
to n - 1
, each with m
seats, numbered from 0
to m - 1
. You need to design a ticketing system that can allocate seats in the following cases:
- If a group of
k
spectators can sit together in a row. - If every member of a group of
k
spectators can get a seat. They may or may not sit together.
Note that the spectators are very picky. Hence:
- They will book seats only if each member of their group can get a seat with row number less than or equal to
maxRow
.maxRow
can vary from group to group. - In case there are multiple rows to choose from, the row with the smallest number is chosen. If there are multiple seats to choose in the same row, the seat with the smallest number is chosen.
Implement the BookMyShow
class:
BookMyShow(int n, int m)
Initializes the object withn
as number of rows andm
as number of seats per row.int[] gather(int k, int maxRow)
Returns an array of length2
denoting the row and seat number (respectively) of the first seat being allocated to thek
members of the group, who must sit together. In other words, it returns the smallest possibler
andc
such that all[c, c + k - 1]
seats are valid and empty in rowr
, andr <= maxRow
. Returns[]
in case it is not possible to allocate seats to the group.boolean scatter(int k, int maxRow)
Returnstrue
if allk
members of the group can be allocated seats in rows0
tomaxRow
, who may or may not sit together. If the seats can be allocated, it allocatesk
seats to the group with the smallest row numbers, and the smallest possible seat numbers in each row. Otherwise, returnsfalse
.
Key Insights
- Efficient seat allocation is crucial due to constraints on
n
,m
, andk
. - The
gather
method requires finding continuous empty seats in a row. - The
scatter
method requires distributing seats across multiple rows. - Use of data structures that allow quick access to seat availability is essential.
Space and Time Complexity
Time Complexity:
gather
: O(m) in the worst case where we search through a row fork
contiguous seats.scatter
: O(n * m) in the worst case if we need to check all rows. Space Complexity:- O(n) for maintaining the state of seat availability.
Solution
To tackle this problem, we can use a 2D list (array) to represent the seating arrangement of the concert hall where each element indicates whether a seat is occupied or empty. The gather
function will iterate through the rows up to maxRow
, checking for k
consecutive empty seats. The scatter
function will iterate through rows up to maxRow
, allocating seats one by one until k
seats are taken or we run out of available seats.