码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 2721 Violet 5 樱花 数论

时间:2015-04-17 13:53:02      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:bzoj   bzoj2721   数论   

题目大意:给定n,求有多少正整数数对(x,y)满足1x+1y=1n!
由于x,y>0,故显然有y>n!
不妨设y=n!+t(t>0),那么有
1x+1n!+t=1n!
化简后得到
n!(n!+t)+x(n!)=x(n!+t)
x=(n!)2t+n!
故答案为d((n!)2)

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define M 1001001
#define MOD 1000000007
using namespace std;
int n;
long long ans=1;
int prime[M],tot;
bool not_prime[M];
void Linear_Shaker()
{
    int i,j;
    for(i=2;i<=n;i++)
    {
        if(!not_prime[i])
            prime[++tot]=i;
        for(j=1;prime[j]*i<=n;j++)
        {
            not_prime[prime[j]*i]=true;
            if(i%prime[j]==0)
                break;
        }
    }
}
int main()
{
    int i;
    cin>>n;
    Linear_Shaker();
    for(i=1;i<=tot;i++)
    {
        int temp=n;
        long long cnt=0;
        while(temp)
            cnt+=temp/prime[i],temp/=prime[i];
        cnt=(cnt<<1|1)%MOD;
        (ans*=cnt)%=MOD;
    }
    cout<<ans<<endl;
}

BZOJ 2721 Violet 5 樱花 数论

标签:bzoj   bzoj2721   数论   

原文地址:http://blog.csdn.net/popoqqq/article/details/45095755

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!