bzoj 2693 jzptab(线性筛预处理+反演)

i=1aj=1blcm(i,j)

i=1aj=1bijgcd(i,j)

ddi=1adj=1bdij[gcd(i,j)=1]

di=1adj=1bdijd|id|ju(d)

dddu(d)d2i=1addj=1bddij

14dddu(d)d2add(add+1)bdd(add+1)

dd=T

14T=1Td|Tu(d)dadd(add+1)bdd(add+1)

nlogn1000Wnlogn8s线1s
线F(T)=d|TTu(d)d
F(T)F(ip)=F(i)F(p)
i%p==0
u(d)d1u(d)=0pu(dp)=0
0TTp
F(ip)=F(i)p


代码:

#include <map>
#include <set>
#include <stack>
#include <queue>
#include <cmath>
#include <string>
#include <vector>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <sstream>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#pragma comment(linker,"/STACK:102400000,102400000")

using namespace std;
#define   MAX           10000005
#define   MAXN          1000005
#define   maxnode       205
#define   sigma_size    2
#define   lson          l,m,rt<<1
#define   rson          m+1,r,rt<<1|1
#define   lrt           rt<<1
#define   rrt           rt<<1|1
#define   middle        int m=(r+l)>>1
#define   LL            long long
#define   ull           unsigned long long
#define   mem(x,v)      memset(x,v,sizeof(x))
#define   lowbit(x)     (x&-x)
#define   pii           pair<int,int>
#define   bits(a)       __builtin_popcount(a)
#define   mk            make_pair
#define   limit         10000

//const int    prime = 999983;
const int    INF   = 0x3f3f3f3f;
const LL     INFF  = 0x3f3f;
//const double pi    = acos(-1.0);
const double inf   = 1e18;
const double eps   = 1e-9;
const LL     mod   = 1e8+9;
const ull    mx    = 133333331;

/*****************************************************/
inline void RI(int &x) {
      char c;
      while((c=getchar())<'0' || c>'9');
      x=c-'0';
      while((c=getchar())>='0' && c<='9') x=(x<<3)+(x<<1)+c-'0';
 }
/*****************************************************/

bool prime[MAX];
int pr[MAX];
int tot;
LL T[MAX];
void init(){
    mem(prime,0);
    mem(T,0);tot=0;
    T[1]=1;
    for(int i=2;i<MAX;i++){
        if(!prime[i]){
            pr[tot++]=i;
            T[i]=(i-(LL)i*i)%mod;
        }
        for(int j=0;j<tot&&pr[j]*i<MAX;j++){
            prime[pr[j]*i]=1;
            if(i%pr[j]==0){
                T[i*pr[j]]=T[i]*pr[j]%mod;    
                break;
            }
            T[i*pr[j]]=T[i]*T[pr[j]]%mod;
        }
    }
    for(int i=1;i<MAX;i++){
        T[i]=(T[i]+T[i-1])%mod;
        if(T[i]<0) T[i]+=mod;
    }
}

LL qpow(LL a,LL n){
    LL ans=1;
    while(n){
        if(n&1) ans=ans*a%mod;
        a=a*a%mod;
        n>>=1;
    }
    return ans;
}
int main() {
    freopen("bzoj_2693.in","r",stdin);
    freopen("bzoj_2693.out","w",stdout);
    int t;
    init();
    cin>>t;
    while(t--){
        int n,m;
        scanf("%d%d",&n,&m);
        LL ans=0;
        for(int i=1;i<=min(n,m);){
            int x=n/(n/i);
            int y=m/(m/i);
            int z=min(x,y);
            LL aa=(LL)(n/i)*(n/i+1)/2%mod;
            LL bb=(LL)(m/i)*(m/i+1)/2%mod;
            ans+=((T[z]-T[i-1])*aa%mod)*bb%mod;
            if(ans>=mod) ans-=mod;
            if(ans<0) ans+=mod;
            i=z+1;
        }
        cout<<(ans%mod+mod)%mod<<endl;
    }
    return 0;
}       
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值