Hoj 2995 Area

题目:http://acm.hit.edu.cn/hoj/problem/view?id=2995

本题主要是理解题意和理解二分法的思路。

具体还需要学会求简单的定积分。

关于x ≥ 1, y ≥ 1, x * y ≤ C。


 代码:

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <stack>
#include <queue>
#include <map>
using namespace std;

//计算x ≥ 1, y ≥ 1, x * y ≤ c时S内有多少个整数点
int count(int c)
{
    int ans = 0;
    for(int i=1;i<=c;i++)
    {
        ans += c/i;
    }
    return ans;
}
//二分法求lower_bound
int calc(int n)
{
    int low = 1;
    int high = n;
    int pos = 1;
    while(low < high)
    {
        int mid = (low + high)/2;
        if(count(mid)<n)
        {
            low = mid + 1;
            pos = low;
        }
        else
        {
            high = mid;
            pos = mid;
        }
    }
    return pos;
}
int main()
{
#ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
#endif
    int t;
    int n;
    int c;
    scanf(" %d",&t);
    for(int i=0;i<t;i++)
    {
        scanf(" %d",&n);
        if(n == 0)
        {
            printf("0.0000\n");
            continue;
        }

        c = calc(n);
        printf("%.4lf\n",c*log(c) - (c - 1));
    }

    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值