• LeetCode 441. Arranging Coins


    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/

  • 相关阅读:
    fzu 2138
    hdu 1598 暴力+并查集
    poj 1734 floyd求最小环,可得到环上的每个点
    floyd求最小环 模板
    fzu 2087并查集的运用求最小生成树的等效边
    hdu 2586 lca在线算法(朴素算法)
    CF 602 D. Lipshitz Sequence 数学 + 单调栈 + 优化
    Problem 2238 Daxia & Wzc's problem 1627 瞬间移动
    D. Tavas and Malekas DFS模拟 + kmp + hash || kmp + hash
    K-th Number 线段树的区间第K大
  • 原文地址:https://www.cnblogs.com/jimmycheng/p/8434803.html
Copyright © 2020-2023  润新知