CF 757E Bash Plays with Functions——积性函数+dp+质因数分解
题目:http://codeforces.com/contest/757/problem/E
f0[n]=2^m,其中m是n的质因子个数(种类数)。大概是一种质因数只能放在 d 或 n/d 两者之一。
然后应该发现因为 f0 是积性的,所以 fr 也是积性的!因为是卷积得来的。
这样就能把每个质因数分开。对于每种质因数考虑 fr 的转移,则 f [ r ][ p^k ] = sigma(i:0~k) ( f [ r-1 ][ p^i ] ) 。
应该发现 f0 里每种质因数的值只和其次数有关,从转移可得出 f [ k ] 里的各种质因数的值也只和其次数有关!所以 dp 状态里只要记录次数就行。
学习到了质因数分解的更好而同样简单的方法。就是预处理mindiv,然后每次除以自己的mindiv。
先写了自己的原始方法,T了;于是怒写了个pollar rho,结果T得更快,难道是写错了?
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define ll long long
using namespace std;
const int N=1e6,M=,mod=1e9+;
int q,r,n,dp[N+][M+],s[M+],ans,mindiv[N+],cnt,pri[N+];
bool vis[N+];
int rdn()
{
int ret=;bool fx=;char ch=getchar();
while(ch>''||ch<''){if(ch=='-')fx=;ch=getchar();}
while(ch>=''&&ch<='') ret=(ret<<)+(ret<<)+ch-'',ch=getchar();
return fx?ret:-ret;
}
void upd(int &x){x-=(x>=mod?mod:);}
void init()
{
mindiv[]=;//
for(int i=;i<=N;i++)
{
if(!vis[i])pri[++cnt]=i,mindiv[i]=i;
for(int j=;j<=cnt&&(ll)i*pri[j]<=N;j++)
{
int d=i*pri[j];
vis[d]=; mindiv[d]=pri[j];
if(i%pri[j]==)break;
}
}
}
int pw(int x,int k,int md)
{
int ret=;while(k){if(k&)ret=(ll)ret*x%md;x=(ll)x*x%md;k>>=;}return ret;
}
bool MR(int x)
{
if(x==)return true;
int s=,u=x-,t=;
while((u&)==)u>>=,t++;
while(s--)
{
int a=rand()%(x-)+;//2~x-1
a=pw(a,u,x);
for(int i=,d;i<=t;i++)
{
d=(ll)a*a%x;
if(d==&&a!=&&a!=x-)return false;
a=d;
}
if(a!=)return false;
}
return true;
}
int gcd(int a,int b){return b?gcd(b,a%b):a;}
int Pl_rho(int x,int c)
{
int x0=rand()%x,y=x,t=,k=;
while()
{
x0=((ll)x0*x0+c)%(x+);
int g=gcd(abs(x0-y),x);
if(g!=&&g!=x)return g;
if(x0==y)return x;
if(++k==t)t<<=,y=x0;
}
}
void fd_fc(int x)
{
if(x<)return;
if(MR(x))
{
int ret=;
while(n%x==)n/=x,ret++;
ans=(ll)ans*dp[r][ret]%mod;
return;
}
int p=x;
while(p==x)p=Pl_rho(p,rand()%(x-)+);//1~x-1
fd_fc(p); fd_fc(x/p);
}
int main()
{
dp[][]=;s[]=; init();
for(int i=;i<=M;i++)dp[][i]=,s[i]=s[i-]+;
for(int i=;i<=N;i++)
for(int j=;j<=M;j++)
dp[i][j]=s[j],s[j]=s[j-]+dp[i][j],upd(s[j]);
q=rdn();
while(q--)
{
r=rdn(); n=rdn(); ans=;
//fd_fc(n);
while(n!=)
{
int i=mindiv[n],d=;
while(n%i==)n/=i,d++;
ans=(ll)ans*dp[r][d]%mod;
}
/*
for(int i=mindiv[n],d;(ll)i*i<=n;i++)
if(n%i==0)
{
d=0;
while(n%i==0)d++,n/=i;
ans=(ll)ans*dp[r][d]%mod;
}
if(n>1)ans=(ll)ans*dp[r][1]%mod;
*/
printf("%d\n",ans);
}
return ;
}
CF 757E Bash Plays with Functions——积性函数+dp+质因数分解的更多相关文章
- CF 757 E Bash Plays with Functions —— 积性函数与质因数分解
题目:http://codeforces.com/contest/757/problem/E 首先,f0(n)=2m,其中 m 是 n 的质因数的种类数: 而且 因为这个函数和1卷积,所以是一个积性函 ...
- Codeforces757E.Bash Plays With Functions(积性函数 DP)
题目链接 \(Description\) q次询问,每次给定r,n,求\(F_r(n)\). \[ f_0(n)=\sum_{u\times v=n}[(u,v)=1]\\ f_{r+1}(n)=\s ...
- Codeforces E. Bash Plays with Functions(积性函数DP)
链接 codeforces 题解 结论:\(f_0(n)=2^{n的质因子个数}\)= 根据性质可知\(f_0()\)是一个积性函数 对于\(f_{r+1}()\)化一下式子 对于 \[f_{r+1} ...
- Bash Plays with Functions CodeForces - 757E (积性函数dp)
大意: 定义函数$f_r(n)$, $f_0(n)$为pq=n且gcd(p,q)=1的有序对(p,q)个数. $r \ge 1$时, $f_r(n)=\sum\limits_{uv=n}\frac{f ...
- Makoto and a Blackboard CodeForces - 1097D (积性函数dp)
大意: 初始一个数字$n$, 每次操作随机变为$n$的一个因子, 求$k$次操作后的期望值. 设$n$经过$k$次操作后期望为$f_k(n)$. 就有$f_0(n)=n$, $f_k(n)=\frac ...
- [Codeforces 757E] Bash Plays with Functions (数论)
题目链接: http://codeforces.com/contest/757/problem/E?csrf_token=f6c272cce871728ac1c239c34006ae90 题目: 题解 ...
- D. Makoto and a Blackboard(积性函数+DP)
题目链接:http://codeforces.com/contest/1097/problem/D 题目大意:给你n和k,每一次可以选取n的因子代替n,然后问你k次操作之后,每个因子的期望. 具体思路 ...
- Problem : 这个题如果不是签到题 Asm.Def就女装(积性函数dp
https://oj.neu.edu.cn/problem/1460 思路:若n=(p1^a1)*(p2^a2)...(pn^an),则f(n,0)=a1*a2*...*an,显然f(n,0)是积性函 ...
- 【codeforces 757E】Bash Plays with Functions
[题目链接]:http://codeforces.com/problemset/problem/757/E [题意] 给你q个询问; 每个询问包含r和n; 让你输出f[r][n]; 这里f[0][n] ...
随机推荐
- 百科知识 isz文件如何打开
使用UltraISO可以打开
- HEVC的參考队列解码
參考队列是指在进行帧间解码时.P或者B slice所參考的已解码的.位于解码图像缓存中(DPB, decoded picture buffer)中的图像队列,类似h264中的reflist0和refl ...
- mvc已添加了具有相同键的项
异常详细信息: System.ArgumentException: 已添加了具有相同键的项. 场景重现:在地址栏输入 http://localhost:51709/Home/Index?user[0 ...
- linux查看磁盘信息
linux查看磁盘挂载信息:df -hlinux查看文件夹大小:sudo du -h --max-depth=1
- 生产追溯系统-Wifi+传感器,实现计数器以及监控机器是否停止
物联网听上去是一个高大上的词儿,还有什么大数据.云.智能制造等等,今天我也往这方面稍微靠一靠,这篇文章主要介绍的是通过 wifi 模块与传感器组合,实现感应计数器,应用场景主要如下: 1.统计 SMT ...
- Tomcat多实例 - 单机
最近在研究Apache+Tomcat+负载均衡/集群的过程中,发现了一篇好的在单机上部署多个tomcat实例的blog. 感受:关于Apache+Tomcat+负载均衡/集群,国内关于这方面的资料是挺 ...
- 【上】安全HTTPS-全面具体解释对称加密,非对称加密,数字签名,数字证书和HTTPS
一,对称加密 所谓对称加密.就是它们在编码时使用的密钥e和解码时一样d(e=d),我们就将其统称为密钥k. 对称加解密的步骤例如以下: 发送端和接收端首先要共享同样的密钥k(即通信前两方都须要知道相应 ...
- 用live555做流媒体转发服务器?
当我们看到这里,说明大家都有这样的一个想法:那就是如何用live555实现一个直播代理转发的流媒体服务器? 我们先不着急去讨论用live555实现流媒体转发的技术方法123,先从live555的整个架 ...
- 组件的详细说明和生命周期ComponentSpecs and Lifecycle
render ReactComponent render() render() 方法是必须的. 当调用的时候,会检测 this.props 和 this.state,返回一个单子级组件.该子级组件可以 ...
- Vue中的计算属性和监听器(computed 与 watch)
react中数据是单向绑定的,而vue中数据是双向绑定的.为什么? 在react中,主要是通过setState 去改变state的值:而在vue中,会自动的触发set 与get 改变属性的值. 在vu ...