Project Euler 012 Highly divisible triangular number

题意:求第一个满足约数个数 >500 个的三角形数。
分析:考虑第 n 个三角形数是n(n+1)2,而 n n+1互质,因此有

d(n(n+1)2)=d(n2)d(n+1),nd(n)d(n+12),n

因此先预处理出 d ,然后枚举n即可。

#include <bits/stdc++.h>

#define ll long long

#define pii std::pair<int,int>
#define mp std::make_pair
#define fi first
#define se second

#define SZ(x) (int)(x).size()
#define pb push_back

template<class T>inline void chkmax(T &x, const T &y) {if(x < y) x = y;}
template<class T>inline void chkmin(T &x, const T &y) {if(x > y) x = y;}

template<class T>
inline void read(T &x) {
    char c;int f = 1;x = 0;
    while(((c=getchar()) < '0' || c > '9') && c != '-');
    if(c == '-') f = -1;else x = c-'0';
    while((c=getchar()) >= '0' && c <= '9') x = x*10+c-'0';
    x *= f;
}
static int outn;
static char out[(int)2e7];
template<class T>
inline void write(T x) {
    if(x < 0) out[outn++] = '-', x = -x;
    if(x) {
        static int tmpn;
        static char tmp[20];
        tmpn = 0;
        while(x) tmp[tmpn++] = x%10+'0', x /= 10;
        while(tmpn) out[outn++] = tmp[--tmpn];
    }
    else out[outn++] = '0';
}
const int N = 1e7;

int p[N + 9], pn;
bool is[N + 9];
int d[N + 9], g[N + 9];
// d[i]表示i的约数个数,g[i]表示i的最小质因子的次数

inline void sieve(int n) {
    d[1] = 1;
    for(int i = 2; i <= n; ++i) {
        if(!is[i]) p[++pn] = i, d[i] = 2, g[i] = 1;
        for(int j = 1; j <= pn && p[j] * i <= n; ++j) {
            int nex = p[j] * i;
            is[nex] = true;
            if(i % p[j] == 0) {
                g[nex] = g[i] + 1;
                d[nex] = d[i] / (g[i] + 1) * (g[nex] + 1);
                break;
            }
            d[nex] = d[i] * 2, g[nex] = 1;
        }
    }
}

int main() {
    sieve(N);
    for(int n = 1; ; ++n) {
        int u = n, v = n + 1;
        if(u & 1) v >>= 1;
        else u >>= 1;
        if(d[u] * d[v] > 500) {
            printf("%lld\n", (ll)u * v);
            break;
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值