返回介绍

solution / 0400-0499 / 0441.Arranging Coins / README_EN

发布于 2024-06-17 01:04:00 字数 3404 浏览 0 评论 0 收藏 0

441. Arranging Coins

中文文档

Description

You have n coins and you want to build a staircase with these coins. The staircase consists of k rows where the ith 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_.

 

Example 1:

Input: n = 5
Output: 2
Explanation: Because the 3rd row is incomplete, we return 2.

Example 2:

Input: n = 8
Output: 3
Explanation: Because the 4th row is incomplete, we return 3.

 

Constraints:

  • 1 <= n <= 231 - 1

Solutions

Solution 1

class Solution:
  def arrangeCoins(self, n: int) -> int:
    return int(math.sqrt(2) * math.sqrt(n + 0.125) - 0.5)
class Solution {
  public int arrangeCoins(int n) {
    return (int) (Math.sqrt(2) * Math.sqrt(n + 0.125) - 0.5);
  }
}
using LL = long;

class Solution {
public:
  int arrangeCoins(int n) {
    LL left = 1, right = n;
    while (left < right) {
      LL mid = left + right + 1 >> 1;
      LL s = (1 + mid) * mid >> 1;
      if (n < s)
        right = mid - 1;
      else
        left = mid;
    }
    return left;
  }
};
func arrangeCoins(n int) int {
  left, right := 1, n
  for left < right {
    mid := (left + right + 1) >> 1
    if (1+mid)*mid/2 <= n {
      left = mid
    } else {
      right = mid - 1
    }
  }
  return left
}

Solution 2

class Solution:
  def arrangeCoins(self, n: int) -> int:
    left, right = 1, n
    while left < right:
      mid = (left + right + 1) >> 1
      if (1 + mid) * mid // 2 <= n:
        left = mid
      else:
        right = mid - 1
    return left
class Solution {
  public int arrangeCoins(int n) {
    long left = 1, right = n;
    while (left < right) {
      long mid = (left + right + 1) >>> 1;
      if ((1 + mid) * mid / 2 <= n) {
        left = mid;
      } else {
        right = mid - 1;
      }
    }
    return (int) left;
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文