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] ...
随机推荐
- asp .net 为图片添加文字水印(内包含有加图片水印的方法) .
在项目中先创建一个Imag_writer 类库 在该类库下分别创建两个枚举类型WaterMarkType (水印的类型).WaterMarkPosition (水印的位置).代码如下: using S ...
- WPF02(concept)
(转自http://www.cnblogs.com/huangxincheng/archive/2012/06/17/2552322.html)这些天从项目上接触到了wpf,感觉有必要做一个笔记,首篇 ...
- Coder-Strike 2014 - Round 2
t题目链接:Coder-Strike 2014 - Round 2 A题:简单水题,注意能加入反复的数字.因此仅仅要推断是否能把Min和Max加入好.就能够了 B题:开一个sum计算每一个聊天总和,和 ...
- mysql判断是否等于某个值
需要在其后面加.toString()方法,其中 flag为字符串类型
- Continuous Integration with Selenium
I have seen a lot of queries from people who basically want to know how to blend Selenium, Maven, an ...
- 深入理解spring国际化
深入理解spring国际化 转自http://blog.csdn.net/ethan_fu/article/details/45621337
- android-async-http框架
android-async-http 简单介绍:An asynchronous, callback-based Http client for Android built on top of Apac ...
- ASP.NET MVC 页面使用富文本控件的XSS漏洞问题
目前在做的项目存在XSS安全漏洞! 原因是有一些页面使用了富文本编辑框,为了使得其内容可以提交,为相关action设置了[ValidateInput(false)] 特性: [HttpPost] [V ...
- 在Mac OS中配置CMake的详细图文教程http://blog.csdn.net/baimafujinji/article/details/78588488
CMake是一个比make更高级的跨平台的安装.编译.配置工具,可以用简单的语句来描述所有平台的安装(编译过程).并根据不同平台.不同的编译器,生成相应的Makefile或者project文件.本文主 ...
- EasyRTMP内置进入摄像机中实现网络推流直播摄像机的功能
本文转自博客:http://blog.csdn.net/jinlong0603/article/details/57468084 在前面的<如何用传统摄像机实现直接对接平台,类似于海康萤石.大华 ...