Problem Description
You have n
coins and you want to build a staircase with these coins. The staircase consists of k
rows where the i
th row has exactly i
coins. The last row of the staircase may be incomplete. Given the integer n
, return the number of complete rows of the staircase you will build.
Key Insights
- The number of coins required for
k
complete rows is given by the formula:k * (k + 1) / 2
. - We need to find the largest integer
k
such thatk * (k + 1) / 2 <= n
. - This is a classic problem that can be solved using binary search due to the monotonic nature of the function.
Space and Time Complexity
Time Complexity: O(log n)
Space Complexity: O(1)
Solution
To solve this problem, we can use binary search to efficiently find the maximum number of complete rows that can be formed with n
coins. We define the search space from 1
to n
and repeatedly narrow down the possible number of rows (k
) by checking if the total coins required for k
rows exceeds n
. If it does, we adjust our search to lower values; otherwise, we look for higher values.