好题收集 奇怪的函数(数学)

Posted Nepenthe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好题收集 奇怪的函数(数学)相关的知识,希望对你有一定的参考价值。

奇怪的函数

Description
洛谷P2759
使得$x^x$达到或超过 $n$ 位数字的最小正整数 $x$ 是多少?

Hint
乍一看是一道数学题
其实就是一道数学题
$a$ 在 $b$ 进制下的位数 $p$ 的计算公式为 $p=\\lfloor log_b a \\rfloor+1$
其实很好理解:
设$\\lfloor x \\rfloor$表示不超过 $x$ 的最大整数,若 $n=(a_k,a_k-1,…a_1,a_0)_b,a_k≠0$,
则$$b^k≤n<b^{k+1} ⇒k≤log_bn<k+1$$
即$k=\\lfloor log_bn \\rfloor$,总位数 $p=k+1$
所以$x^x$的位数就是$\\lfloor lg{x^x} \\rfloor+1$,运用对数知识就是$\\lfloor xlgx \\rfloor+1$
然后考虑到对数函数是单调的,所以可以用二分答案

Code

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#define LL long long
using namespace std;
LL n,l=1,r=2e9;
int main(){

    scanf("%lld",&n);
    while(l<r){
        LL mid=(l+r)>>1,len=(LL)(mid*log10(1.0*mid))+1;
        if(len<n) l=mid+1;
        else r=mid;
    }
    cout<<l<<endl;
    return 0;
}

以上是关于好题收集 奇怪的函数(数学)的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ-3195奇怪的道路 状压DP (好题!)

常用Javascript代码片段集锦

好题收集 异或最大值(贪心,trie树)

[M数学] lc528. 按权重随机选择(前缀和+数学+概率+几何概型+好题)

[M数学] lc528. 按权重随机选择(前缀和+数学+概率+几何概型+好题)

Microsoft SQL Server 代码片段收集