> For the complete documentation index, see [llms.txt](https://mayanktyagi3111.gitbook.io/interview-prep/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mayanktyagi3111.gitbook.io/interview-prep/strings-arrays-and-2-pointers/hotel-bookings-possible.md).

# Hotel Bookings Possible

A hotel manager has to process **N** advance bookings of rooms for the next season. His hotel has **C** rooms. Bookings contain an arrival date and a departure date. He wants to find out whether there are enough rooms in the hotel to satisfy the demand. Write a program that solves this problem in time O(N log N) .\
\
**Input Format**<br>

First argument is an integer array A containing arrival time of booking.\
Second argument is an integer array B containing departure time of booking.\
Third argument is an integer C denoting the count of rooms.\
\
**Output Format**<br>

Return True if there are enough rooms for N bookings else return False.\
Return 0/1 for C programs.\
\
**Example Input**<br>

Input 1:

```
 A = [1, 3, 5]
 B = [2, 6, 8]
 C = 1
```

\
\
**Example Output**<br>

Output 1:

```
 0
```

\
\
**Example Explanation**<br>

Explanation 1:

```
 At day = 5, there are 2 guests in the hotel. But I have only one room.
```

```java
public class Solution {
    public boolean hotel(ArrayList<Integer> arrive, ArrayList<Integer> depart, int K) {
        Collections.sort(arrive);
        Collections.sort(depart);
        for (int i = 0; i + K < arrive.size(); i++)
            if (arrive.get(i + K) < depart.get(i))
                return false;

        return true;
    }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mayanktyagi3111.gitbook.io/interview-prep/strings-arrays-and-2-pointers/hotel-bookings-possible.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
