vijos1156
从前有个人 他沉迷暴力分解质因数
inline void get(int x,int v)
{
for(int i=2;i*i<=x;i++)
{
while(x%i==0)
cnt[i]+=v,x/=i;
}
if(x!=1) cnt[x]+=v;
}
然后他T了
。。。。。。。。。。。
于是他打了一发欧拉筛
又跪了
好吧……是数组开小了
题意大概就是求高精度C(n,n+m),n,m<=50000
港道理为什么暴力分解会T的那么惨
欧拉筛数组正常后:
害怕,暴力常数这么大吗。。。
我也不知道
这题直接乘的话,还要高精度除法,麻烦,而且位数吃不消,所以考虑分解质因数后高精乘低精
我数组因为RE所以是xjb开的不要管我
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define inf 1e9
#define ll long long
#define For(i,j,k) for(int i=j;i<=k;i++)
#define Dow(i,j,k) for(int i=k;i>=j;i--)
using namespace std;
int n,m,ans[1000001],cnt[100001],pri[20001],tag[20001],tot;
bool bj[20001];
inline void get(int x,int v)
{
while(x)
{
if(!tag[x]) break;
cnt[tag[x]]+=v;
x/=tag[x];
}
if(x!=1) cnt[x]+=v;
}
inline void get_pr()
{
int N=n+m;
For(i,2,N)
{
if(!bj[i]) pri[++tot]=i;
For(j,1,tot)
{
if(i*pri[j]>N) break;
bj[i*pri[j]]=1;
tag[i*pri[j]]=pri[j];
if(i%pri[j]==0) break;
}
}
}
inline void mul(int x)
{
For(i,1,ans[0])
ans[i]*=x;
For(i,1,ans[0])
ans[i+1]+=ans[i]/10,ans[i]%=10;
while(ans[ans[0]+1]){ans[0]++;ans[ans[0]+1]+=ans[ans[0]]/10;ans[ans[0]]%=10;}
}
inline void out()
{
Dow(t,1,100)
{
printf("%d",ans[t]);
if(t%10==1) puts("");
}
}
int main()
{
scanf("%d%d",&n,&m);
get_pr();
ans[0]=ans[1]=1;
int k=n+m;
if(n>m) swap(n,m);
For(i,m+1,k) get(i,1);
For(i,2,n) get(i,-1);
For(i,2,k)
For(j,1,cnt[i]) mul(i);
out();
system("pause");
}