题目链接:点击打开链接
思路:这里给出的 n 的取值为 1e18,令方程变为 x * x + s(x) * x = n 则可以看出,根 x 的取值最大不会超过 1e9,也就是 x 的每一位数字之和加起来 9*9 = 81,就是 s(x) 的值不会超过 81,然后枚举 s(x),找到 x 即可
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define LL long long
using namespace std;
LL n;
LL dig_sum(LL x)
{
LL ans=0;
while(x)
{
ans+=x%10;
x/=10;
}
return ans;
}
double solve(LL x,LL n) // 求根公式,题中说了要正数解,所以这里这里只考虑正数解
{
return (sqrt(x*x+4*n+0.0)-x*1.0)/2;
}
int main()
{
while(~scanf("%I64d",&n))
{
LL ans=-1;
for(LL i=1;i<=90;i++)
{
LL root=1LL*solve(i,n);
LL sum=dig_sum(root);
if(root*root+sum*root-n==0)
{
ans=root;
break;
}
}
printf("%I64d\n",ans);
}
return 0;
}