LightOJ - 1007

Posted The Azure Arbitrator

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LightOJ - 1007相关的知识,希望对你有一定的参考价值。

简单欧拉函数递推
用埃式筛会吃亏

#include<iostream>
#include<cstdio>
#include<cstring>
#include<bitset>
using namespace std;
const int maxn = 5e6+11;
typedef unsigned long long ll;
ll phi[maxn];
void euler(int n){
    for(int i = 1; i <= n; i++){
        phi[i]=i;
    }
    for(int i = 2; i <= n; i++){
        if(phi[i]==i){
            for(int j = i; j <= n; j+=i){
                phi[j]=phi[j]/i*(i-1);
            }
        }
    }
}
int a,b,kase;
int main(){
    euler(int(5e6+7));
    for(int i = 1; i < maxn; i++) phi[i]=phi[i-1]+phi[i]*phi[i];
    int T; scanf("%d",&T);
    while(T--){
        scanf("%d%d",&a,&b);
        printf("Case %d: %llu\n",++kase,phi[b]-phi[a-1]);
    }
    return 0;
}

以上是关于LightOJ - 1007的主要内容,如果未能解决你的问题,请参考以下文章

LightOj1007 - Mathematically Hard(欧拉函数)

LightOJ1007 Mathematically Hard

Mathematically Hard LightOJ-1007(欧拉定理+前缀和)

LightOJ 1007 Mathematically Hard

LightOJ1030 Discovering Gold

从片段向数据库中插入值时ListView不更新