BZOJ 4805: 欧拉函数求和

Description

求\(\sum_{i=1}^n\varphi(i),n\leqslant 2\times 10^9\)

Solution

杜教筛...

见上篇...

Code

/**************************************************************
    Problem: 4805
    User: BeiYu
    Language: C++
    Result: Accepted
    Time:1100 ms
    Memory:48172 kb
****************************************************************/

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef long double ld;
const int N = 2000050;
const ll p = 1000000007;

ll Pow(ll a,ll b,ll r=1) { for(;b;b>>=1,a=a*a%p) if(b&1) r=r*a%p;return r; }
ll mul(ll a,ll b) { return (a*b-((ll)((ld)a/p*b+1e-3))*p+p)%p; }

int b[N],pr[N],cp;
ll phi[N],sp[N],inv2=Pow(2,p-2);

void pre(int n) {
    for(int i=2;i<=n;i++) {
        if(!b[i]) pr[++cp]=i,phi[i]=i-1;
        for(int j=1;j<=cp && i*pr[j]<=n;j++) {
            b[i*pr[j]]=1;
            if(i%pr[j]) phi[i*pr[j]]=phi[i]*(pr[j]-1);
            else { phi[i*pr[j]]=phi[i]*pr[j];break; }
        }
    }phi[1]=1;
    for(int i=1;i<=n;i++) sp[i]=(sp[i-1]+phi[i]);
}
map<ll,ll> mp;
ll S(ll n) {
    if(n<=2000000) return sp[n];
    if(mp.count(n)) return mp[n];
    ll fn;
    if(n&1) fn=n*((n+1)>>1);
    else fn=(n>>1)*(n+1);
    for(ll i=2,j;i<=n;i=j+1) {
        j=n/(n/i);
        fn=(fn-(j-i+1)*S(n/i));
    }return mp[n]=fn;
}

int main() {
    pre(2000000);
    ll n;
    scanf("%lld",&n);
    printf("%lld\n",S(n));
    return 0;
}

  

时间: 2024-11-02 11:41:35

BZOJ 4805: 欧拉函数求和的相关文章

BZOJ4805: 欧拉函数求和(杜教筛)

4805: 欧拉函数求和 Time Limit: 15 Sec  Memory Limit: 256 MBSubmit: 614  Solved: 342[Submit][Status][Discuss] Description 给出一个数字N,求sigma(phi(i)),1<=i<=N Input 正整数N.N<=2*10^9 Output 输出答案. Sample Input 10 Sample Output 32 HINT Source By FancyCoder 直接大力杜教筛

【BZOJ4805】欧拉函数求和(杜教筛)

[BZOJ4805]欧拉函数求和(杜教筛) 题面 BZOJ 题解 好久没写过了 正好看见了顺手切一下 令\[S(n)=\sum_{i=1}^n\varphi(i)\] 设存在的某个积性函数\(g(x)\) \[(g*\varphi)(i)=\sum_{d|i}g(d)\varphi(\frac{i}{d})\] \[\sum_{i=1}^n(g*\varphi(i))(i)\] \[=\sum_{i=1}^n\sum_{d|i}g(d)\varphi(\frac{i}{d})\] \[=\sum

poj3090欧拉函数求和

E - (例题)欧拉函数求和 Crawling in process... Crawling failed Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description A lattice point (x, y) in the first quadrant (x and y are integers greater than or equal to 0

NYOJ 570 欧拉函数求和【欧拉函数求和】

我只想说数据弱爆了,这也可以过 欧拉函数求和 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述 题目描述很简单,求出 (PS:上面式子的意思是大于0小于n并且能整除n的所有d的欧拉函数值之和). 输入 每行一个数n(n<2^31),输入以文件结尾结束. 输出 每个结果占一行. 样例输入 1 2 12 样例输出 0 1 8 来源 rihkddd原创 上传者 rihkddd #include<stdio.h> int euler(int n) { int ret=

[bzoj 2818]欧拉函数

题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=2818 枚举最大公约数,对于每一个质数p,只需要求出1<=x,y<=(n/p)范围内gcd(x,y)=1的对数,而这个对数就是类似欧拉函数的一个前缀和. #include<cstdio> #include<cstring> using namespace std; const int maxn=10000005; bool check[maxn]; int pri

欧拉函数求和 解题报告

对正整数n,欧拉函数是小于或等于n的数中与n互质的数的数目.此函数以其首名研究者欧拉命名,它又称为Euler's totient function.φ函数.欧拉商数等.例如:φ(8) = 4(Phi(8) = 4),因为1,3,5,7均和8互质. S(n) = Phi(1) + Phi(2) + ...... Phi(n),给出n,求S(n),例如:n = 5,S(n) = 1 + 1 + 2 + 2 + 4 = 10,定义Phi(1) = 1.由于结果很大,输出Mod 1000000007的结

BZOJ 4802 欧拉函数

4802: 欧拉函数 Description 已知N,求phi(N) Input 正整数N.N<=10^18 Output 输出phi(N) Sample Input 8 Sample Output 4 很明显,这样的题就是一道十分简单的入门题.只是N比较大,但输入和输出都还没有爆long long.如果输入高精度数,那就很恶心了(虽然可以定义大整数类Big Int). phi[n]=n∏(1-(1/p)),所以是Miller-Rabin和Pollard-Rho算法,用来分解一个大数的质因子.

bzoj 4802 欧拉函数 (pollardrho大数质因数分解)

bzoj4802 求\(10^{18}\)级别的数的欧拉函数. pollardrho算法分解大数质因数即可.(主要是存模板) #include <bits/stdc++.h> using namespace std; typedef long long ll; ll sed=20170831,mo=LLONG_MAX,rt=1; ll rand_() { rt=(((rt%sed)<<16)&mo); return rt; } ll range(int l,int r) {

【BZOJ3944/4805】Sum/欧拉函数求和 杜教筛

[BZOJ3944]Sum Description Input 一共T+1行 第1行为数据组数T(T<=10) 第2~T+1行每行一个非负整数N,代表一组询问 Output 一共T行,每行两个用空格分隔的数ans1,ans2 Sample Input 6 1 2 8 13 30 2333 Sample Output 1 1 2 0 22 -2 58 -3 278 -3 1655470 2 题解: 粘自http://blog.csdn.net/skywalkert/article/details/