https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1093
既然要设立中转点 那每个点被经过的次数肯定是单增的 且一定时奇数 因为最后一趟没有回程
然后就想不动了。。其实还可以停在非整数点
其实就是逆向递推 不断将问题转换
using namespace std;
const double eps=1e-6;
int main()
{
double n,k,cur,ans;
int tmp;
scanf("%lf%lf",&n,&k);
cur=1.0,ans=0.0;
while(n>=k/cur)
{
n-=k/cur;
cur+=2.0,ans+=k;
}
if(n>eps) ans+=n*cur;
tmp=ans;
if(ans>double(tmp)) ans=tmp+1.0;
else ans=tmp;
printf("%.0f\n",ans);
return 0;
}