热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

2020BIT冬训二分三分快速幂矩阵DSandFortressCodeForces985D

ProblemDescriptionYouaregoingtothebeachwiththeideatobuildthegreatestsandcastleeverinyourhe

Problem Description

You are going to the beach with the idea to build the greatest sand castle ever in your head! The beach is not as three-dimensional as you could have imagined, it can be decribed as a line of spots to pile up sand pillars. Spots are numbered 1 through infinity from left to right.

Obviously, there is not enough sand on the beach, so you brought n packs of sand with you. Let height hi of the sand pillar on some spot i be the number of sand packs you spent on it. You can‘t split a sand pack to multiple pillars, all the sand from it should go to a single one. There is a fence of height equal to the height of pillar with H sand packs to the left of the first spot and you should prevent sand from going over it.

Finally you ended up with the following conditions to building the castle:



  • h1?≤?H: no sand from the leftmost spot should go over the fence;

  • For any 技术分享图片 |hi?-?hi?+?1|?≤?1: large difference in heights of two neighboring pillars can lead sand to fall down from the higher one to the lower, you really don‘t want this to happen;

  • 技术分享图片: you want to spend all the sand you brought with you.

As you have infinite spots to build, it is always possible to come up with some valid castle structure. Though you want the castle to be as compact as possible.

Your task is to calculate the minimum number of spots you can occupy so that all the aforementioned conditions hold.

Input

The only line contains two integer numbers n and H (1?≤?n,?H?≤?1018) — the number of sand packs you have and the height of the fence, respectively.

Output

Print the minimum number of spots you can occupy so the all the castle building conditions hold.

Examples




Input

5 2



Output

3



Input

6 8



Output

3


Note

Here are the heights of some valid castles:



  • n?=?5,?H?=?2,?[2,?2,?1,?0,?...],?[2,?1,?1,?1,?0,?...],?[1,?0,?1,?2,?1,?0,?...]

  • n?=?6,?H?=?8,?[3,?2,?1,?0,?...],?[2,?2,?1,?1,?0,?...],?[0,?1,?0,?1,?2,?1,?1,?0...] (this one has 5 spots occupied)

The first list for both cases is the optimal answer, 3 spots are occupied in them.

And here are some invalid ones:



  • n?=?5,?H?=?2,?[3,?2,?0,?...],?[2,?3,?0,?...],?[1,?0,?2,?2,?...]

  • n?=?6,?H?=?8,?[2,?2,?2,?0,?...],?[6,?0,?...],?[1,?4,?1,?0...],?[2,?2,?1,?0,?...]

注意这题是最左边的高度不能大于H。(一开始以为是最大高度不能大于H,一直wa)

二分法寻找答案。需要用到等差数列公式和根据题目得出的等式。

若mid<=h。那么就以高度1,2,3,…,mid为他的最大值即mid*(mid+1)/2。

若mid>h。那么令最左边的为h。最高的高度为hig。

从最左边依次过去是h,h+1,…,hig-1,hig,(hig),hig-1,…,2,1。

我们可以发现,当mid-h为奇数时,最高高度出现2次,为偶数时则只出现一次。

我们可以通过计算得出hig=h+(mid-h)/2。

再根据上述就可以得出mid所能占据最大的值cnt。

查找到最小的那个大于n的cnt所对应的mid即是答案。

AC代码如下(这题洛谷上的难度标注是提高+/省选-,tql):


#include
#include

using namespace std;
long long n,h,l,r,cnt,ans,mid,flag,hig;
int main(){
scanf(
"%lld%lld",&n,&h);
l
=1,r=n;
while(r>l){
mid
=(l+r)/2;
ans
=0;
flag
=0;
if(mid<=h){
if(mid>2e9)
flag
=1;
else
ans
=mid*(mid+1);
}
else{
hig
=h+(mid-h)/2;
if(hig>2e9)
flag
=1;
else{
if((mid-h)&1)
ans
=(hig+h)*(hig+1-h)+hig*(hig+1);
else
ans
=(hig+h-1)*(hig-h)+hig*(hig+1);
}
}
if(ans==2*n){
r
=mid;
break;
}
else if(ans>(2*n)||flag){
r
=mid;
}
else
l
=mid+1;
}
printf(
"%lld\n",r);
}

 


推荐阅读
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • 网络爬虫的规范与限制
    本文探讨了网络爬虫引发的问题及其解决方案,重点介绍了Robots协议的作用和使用方法,旨在为网络爬虫的合理使用提供指导。 ... [详细]
  • 微软推出Windows Terminal Preview v0.10
    微软近期发布了Windows Terminal Preview v0.10,用户可以在微软商店或GitHub上获取这一更新。该版本在2月份发布的v0.9基础上,新增了鼠标输入和复制Pane等功能。 ... [详细]
  • 解决Bootstrap DataTable Ajax请求重复问题
    在最近的一个项目中,我们使用了JQuery DataTable进行数据展示,虽然使用起来非常方便,但在测试过程中发现了一个问题:当查询条件改变时,有时查询结果的数据不正确。通过FireBug调试发现,点击搜索按钮时,会发送两次Ajax请求,一次是原条件的请求,一次是新条件的请求。 ... [详细]
  • LDAP服务器配置与管理
    本文介绍如何通过安装和配置SSSD服务来统一管理用户账户信息,并实现其他系统的登录调用。通过图形化交互界面配置LDAP服务器,确保用户账户信息的集中管理和安全访问。 ... [详细]
  • 自定义滚动条美化页面内容
    当页面内容超出显示范围时,为了提升用户体验和页面美观,通常会添加滚动条。如果默认的浏览器滚动条无法满足设计需求,我们可以自定义一个符合要求的滚动条。本文将详细介绍自定义滚动条的实现过程。 ... [详细]
  • importpymysql#一、直接连接mysql数据库'''coonpymysql.connect(host'192.168.*.*',u ... [详细]
  • Framework7:构建跨平台移动应用的高效框架
    Framework7 是一个开源免费的框架,适用于开发混合移动应用(原生与HTML混合)或iOS&Android风格的Web应用。此外,它还可以作为原型开发工具,帮助开发者快速创建应用原型。 ... [详细]
  • 本文介绍了如何使用 CMD 批处理脚本进行文件操作,包括将指定目录下的 PHP 文件重命名为 HTML 文件,并将这些文件复制到另一个目录。 ... [详细]
  • 两个条件,组合控制#if($query_string~*modviewthread&t(&extra(.*)))?$)#{#set$itid$1;#rewrite^ ... [详细]
  • 本文详细介绍了DMA控制器如何通过映射表处理来自外设的请求,包括映射表的设计和实现方法。 ... [详细]
  • 本文详细介绍了如何利用Duilib界面库开发窗体动画效果,包括基本思路和技术细节。这些方法不仅适用于Duilib,还可以扩展到其他类似的界面开发工具。 ... [详细]
  • Spark中使用map或flatMap将DataSet[A]转换为DataSet[B]时Schema变为Binary的问题及解决方案
    本文探讨了在使用Spark的map或flatMap算子将一个数据集转换为另一个数据集时,遇到的Schema变为Binary的问题,并提供了详细的解决方案。 ... [详细]
  • 第二十五天接口、多态
    1.java是面向对象的语言。设计模式:接口接口类是从java里衍生出来的,不是python原生支持的主要用于继承里多继承抽象类是python原生支持的主要用于继承里的单继承但是接 ... [详细]
  • 解决Parallels Desktop错误15265的方法
    本文详细介绍了在使用Parallels Desktop时遇到错误15265的多种解决方案,包括检查网络连接、关闭代理服务器和修改主机文件等步骤。 ... [详细]
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有