arranging-coins
Posted 笨鸟居士的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arranging-coins相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/arranging-coins/
public class Solution { public int arrangeCoins(int n) { // n >= x*(x+1)/2; 2n >= x^2 + x; 8n+1 >= 4x^2 + 4x + 1 = (2x+1)^2 // (8n+1)^(1/2) = 2x+1; x = ((8n+1)^(1/2)-1)/2; // 注意下面的n要转成long,不然可能溢出 return (int)(Math.sqrt(8*(long)n+1)-1)/2; } }
以上是关于arranging-coins的主要内容,如果未能解决你的问题,请参考以下文章