题意:给定一个数列${a_i}$,若子序列长度为$k$,最大公约数为$gcd$,定义子序列的权值为$k*\gcd (\gcd  > 1)$。求所有子序列的权值和。 答案对10^9+7取模。

解题关键:容斥原理求序列中各$gcd$的个数,亦可用莫比乌斯函数。

逆序求的话,前面直接减后面的个数,在后面一项就相当于相加了,如此往复。

关于知道所有$gcd$为$n$的个数之后答案的求法:

法一:

$\begin{array}{l}
1C_n^1 + 2C_n^2 + ... + nC_n^n\\
= n(C_{n - 1}^1 + C_{n - 1}^2 + ... + C_{n - 1}^{n - 1})\\
= n{2^{n - 1}}
\end{array}$

法二:

$\begin{array}{l}
[{(x + 1)^n}]' = n{(x + 1)^{n - 1}}\\
{(x + 1)^n} = \sum\limits_{i = 1}^n {C_n^i{x^i}} \\
n{(x + 1)^{n - 1}} = \sum\limits_{i = 1}^n {C_n^ii{x^{i - 1}}}
\end{array}$

法三:逆序相加

容斥解法:

 #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod=1e9+;
#define inf 0x3f3f3f3f
ll c[],pw[],sum[];
int main(){
ll n,x,mx=-inf;
cin>>n;
pw[]=;
for(int i=;i<=n+;i++) pw[i]=pw[i-]*%mod;
for(int i=;i<n;i++) cin>>x,c[x]++,mx=max(mx,x);//hash一下
ll ct;
ll ans=;
for(int i=mx;i>;i--){
ct=;
for(int j=i;j<=mx;j+=i){
ct=(ct+c[j])%mod;
sum[i]-=sum[j];
}
sum[i]=(sum[i]+ct*pw[ct-]%mod+mod)%mod;
ans=(ans+sum[i]*i%mod+mod)%mod;
}
cout<<ans<<"\n";
return ;
}

莫比乌斯反演解法:

 #include<bits/stdc++.h>
#define inf 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int mod=1e9+;
ll mu[],c[],cnt[],pw[],g[];
void sievemu(int n){
mu[]=;
for(int i=;i<=n;i++){
for(int j=i+i;j<=n;j+=i){
mu[j]-=mu[i];
}
}
} int main(){
sievemu();
ll n,x,mx=-inf;
cin>>n;
pw[]=;
for(int i=;i<=n;i++) pw[i]=pw[i-]*%mod;
for(int i=;i<n;i++) cin>>x,c[x]++,mx=max(mx,x);
for(int i=;i<=mx;i++){
ll ss=;
for(int j=i;j<=mx;j+=i){
ss+=c[j];
}
if(ss) cnt[i]=ss*pw[ss-]%mod;
}
//计算gcd倍数的个数 //对答案进行莫比乌斯反演
ll ans=;
for(int i=;i<=mx;i++){
for(int j=i;j<=mx;j+=i){
g[i]=(g[i]+cnt[j]*mu[j/i]%mod+mod)%mod;
}
ans=(ans+i*g[i]%mod+mod)%mod;
}
cout<<ans<<"\n";
return ;
}

[cf839d]Winter is here容斥原理的更多相关文章

  1. CF839D Winter is here

    题目分析 显然我们不可能直接计算每一个子序列的贡献,而应该计算对于每一个gcd对答案的贡献. 考虑容斥.按照套路: 设\(q(i)\)表示序列\(gcd\)为\(i\)的倍数的序列长度和. 设\(g( ...

  2. Codeforces 839D Winter is here - 暴力 - 容斥原理

    Winter is here at the North and the White Walkers are close. John Snow has an army consisting of n s ...

  3. Codeforces 839D Winter is here【数学:容斥原理】

    D. Winter is here time limit per test:3 seconds memory limit per test:256 megabytes input:standard i ...

  4. Codeforces 839D Winter is here(容斥原理)

    [题目链接] http://codeforces.com/contest/839/problem/D [题目大意] 给出一些数,求取出一些数,当他们的GCD大于0时,将数量乘GCD累加到答案上, 求累 ...

  5. 【容斥原理】Codeforces Round #428 (Div. 2) D. Winter is here

    给你一个序列,让你对于所有gcd不为1的子序列,计算它们的gcd*其元素个数之和. 设sum(i)为i的倍数的数的个数,可以通过容斥算出来. 具体看这个吧:http://blog.csdn.net/j ...

  6. hdu4059 The Boss on Mars(差分+容斥原理)

    题意: 求小于n (1 ≤ n ≤ 10^8)的数中,与n互质的数的四次方和. 知识点: 差分: 一阶差分: 设  则    为一阶差分. 二阶差分: n阶差分:     且可推出    性质: 1. ...

  7. hdu2848 Visible Trees (容斥原理)

    题意: 给n*m个点(1 ≤ m, n ≤ 1e5),左下角的点为(1,1),右上角的点(n,m),一个人站在(0,0)看这些点.在一条直线上,只能看到最前面的一个点,后面的被档住看不到,求这个人能看 ...

  8. BZOJ2301: [HAOI2011]Problem b[莫比乌斯反演 容斥原理]【学习笔记】

    2301: [HAOI2011]Problem b Time Limit: 50 Sec  Memory Limit: 256 MBSubmit: 4032  Solved: 1817[Submit] ...

  9. BZOJ 2440: [中山市选2011]完全平方数 [容斥原理 莫比乌斯函数]

    2440: [中山市选2011]完全平方数 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 3028  Solved: 1460[Submit][Sta ...

随机推荐

  1. rails 常用方法

    bundle install --without production 不安装production中的gem ./configure && make && sudo m ...

  2. iOS block 闭包的学习

    iOS  闭包 学习 理解: 1 .   闭包外界无法访问内部变量 ,它是一个独立的代码块. 2 .   闭包可以作为 一个方法 ,甚至局部变量  全局 变量 3 .   闭包 是一种引用类型   注 ...

  3. ubuntu16.04 docker安装

    docker官网安装页面:https://docs.docker.com/engine/installation/linux/ubuntu/ 这个是ubuntu14.04 LTS需要的 $ sudo ...

  4. ios 微信发送位置

    @interface GroupReportViewController () <BMKMapViewDelegate,BMKLocationServiceDelegate,BMKGeoCode ...

  5. 织梦dedecms 调用文章图片数功能

    function BodyImgNum($aid) { global $dsql; $sql = "select aid,body from dede_addonarticle where ...

  6. 大话设计模式--模板方法模式 TemplateMethod -- C++ 实现

    1. 模板方法模式: 定义一个操作中的算法骨架,而将一些操作延迟到子类, 模板方法模式使得子类可以不改变一个算法的结构既可以重定义该算法的某些特定步骤. 当不变和可变的行为在方法的子类实现中混在一起的 ...

  7. Oracle的PL_SQL的结构

    --PL/SQL的结构 declare --声明变量和常量关键字 v_name nvarchar2(); v_age integer;--常规变量声明 v_product table_name.col ...

  8. linux shell编程(三) if 和 for

    if 条件判断: 单分支的if语句if 判断条件: then statement1fi双分支的if语句if 判断条件;then statement1 statementelse statement3f ...

  9. hdu 2018 母牛的故事(简单dp)

    母牛的故事 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submi ...

  10. openlayers 3加载GeoServer发布的wfs类型服务

    转:https://blog.csdn.net/u013323965/article/details/52449502 问题产生:      openlayer3加载WFS存在跨域问题,需要用json ...