码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 441. Arranging Coins

时间:2018-02-09 14:56:52      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:etc   must   turn   ems   总数   fit   tar   time   complete   

You have a total of n coins that you want to form in a staircase shape, where every k-th row must have exactly k coins.

Given n, find the total number of full staircase rows that can be formed.

n is a non-negative integer and fits within the range of a 32-bit signed integer.

Example 1:

n = 5

The coins can form the following rows:
¤
¤ ¤
¤ ¤

Because the 3rd row is incomplete, we return 2.

 

Example 2:

n = 8

The coins can form the following rows:
¤
¤ ¤
¤ ¤ ¤
¤ ¤

Because the 4th row is incomplete, we return 3.

 


题目标签:Math

 

  题目给了我们 coins 的总数, n, 让我们找出可以组成几行,返回 行数。

  首先来看一下规律:

       1       x                          1 * 2 / 2 = 1

       2       x  x                      2 * 3 / 2 = 3

       3       x  x  x                  3 * 4 / 2 = 6

       4       x  x  x  x              4 * 5 / 2 = 10

       5       x  x  x  x  x          5 * 6 / 2 = 15

 

  可以利用公式 x * (x + 1) / 2 来算出, 某一行累积的总 coins 数量。

  然后我们要找到的行数的总 coins 数量 一定是 小于等于 n 的。所以可以从  x * (x + 1) / 2 <= n 求出 x。

 

 

Java Solution:

Runtime beats 66.14% 

完成日期:02/08/2018

关键词:math

关键点:利用公式 x * (x + 1) / 2 和 quadratic equation

1 class Solution 
2 {
3     public int arrangeCoins(int n) 
4     {
5         return (int)((-1 + Math.sqrt(1 + 8.0 * n)) / 2);
6     }
7 }

参考资料:https://leetcode.com/problems/arranging-coins/discuss/92298/Java-O(1)-Solution-Math-Problem

LeetCode 题目列表 - LeetCode Questions List

题目来源:https://leetcode.com/

LeetCode 441. Arranging Coins

标签:etc   must   turn   ems   总数   fit   tar   time   complete   

原文地址:https://www.cnblogs.com/jimmycheng/p/8434803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!