【欧拉计划】44. Pentagon numbers

【思路】选定一个足够大的项数上限 $n$,然后 $\mathcal O(n^2)$ 枚举,判断的时候采用二分,总体时间复杂度为 $\mathcal O(n^2 \log n)$:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include<stdio.h>
#include<stdbool.h>
int ans=1<<30;
bool check(int l,int r,int x)
{
while(l<=r)
{
int mid=(l+r)>>1,tmp=mid*(3*mid-1);
if(tmp==x)return true;
if(tmp>x)r=mid-1;
else l=mid+1;
}
return false;
}
int main()
{
for(int i=1;i<=10000;++i)
{
for(int j=1;j<i;++j)
{
int pi=i*(i*3-1),pj=j*(j*3-1);
if(check(1,i<<1,pi+pj)&&check(1,i,pi-pj)&&pi-pj<ans)ans=pi-pj;
}
}
printf("%d",ans>>1);
return 0;
}

【欧拉计划】44. Pentagon numbers

https://hensier.github.io/projecteuler/44/

作者

hensier

发布于

2022-05-01

更新于

2023-01-02

许可协议

评论