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

leetcode441

时间:2017-04-21 22:31:44      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:range   int   targe   event   des   code   integer   public   tps   

public class Solution {
    public int ArrangeCoins(int n) {
        //convert int to long to prevent integer overflow
            long nLong = (long)n;
            long st = 0;
            long ed = nLong;
            long mid = 0;
            while (st <= ed)
            {
                mid = st + (ed - st) / 2;

                if (mid * (mid + 1) <= 2 * nLong)
                {
                    st = mid + 1;
                }
                else
                {
                    ed = mid - 1;
                }
            }
            return (int)(st - 1);
    }
}

https://leetcode.com/problems/arranging-coins/#/description

leetcode441

标签:range   int   targe   event   des   code   integer   public   tps   

原文地址:http://www.cnblogs.com/asenyang/p/6746305.html

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