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

UVA - 1635

时间:2017-08-14 16:35:23      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:pen   sign   hid   大小   shu   prim   include   print   span   

这是一道组合数学加质因子分解的题目

题意 给n个数两两相邻的数互相相加,最后剩下一个数,然后看每个数的大小是否能%m

利用c(n,m)=(n-m+1)/m*c(n,m-1);

由于一直乘下去会long long ,所以只需(n-m+1)/m进行质数分解

技术分享
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<iostream>
#include<algorithm>
#include<string.h>
#include<stdlib.h>
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<math.h>
#include<map>
using namespace std;

#define MST(vis,x) memset(vis,x,sizeof(vis))
#define INF 0x3f3f3f3f
#define ll long long
#define ull unsigned long long
#define maxn  100005
#define mod  1000000007
ll prim[maxn];
ll judge[1000005];
ll shu[1000005];
ll all;
ll tempm[1000005];
ll ttempm[1000005];
ll tempall;
void go(int x,int d)
{
    for(int a=0; a<tempall; a++)
    {
        if(x==1)break;
        if(x%ttempm[a]==0)
        {
            if(x==1)break;
            while(x%ttempm[a]==0)
            {
                tempm[a]+=d;
                x/=ttempm[a];
            }
        }
    }
    return ;
}
bool check()
{
    for(int a=0;a<tempall;a++)
        if(tempm[a]>0)return false;
    return true;
}
int main()
{
    MST(judge,0);
    all=0;
    int maxx=sqrt(1e9+0.5);
    for(int a=2; a<=maxx; a++)
    {
        if(!judge[a])
        {
            judge[a]=1;

            shu[all++]=a;
        }
        for(int b=0; b<all&&shu[b]*a<=maxx; b++)
        {
            judge[shu[b]*a]=1;
            if(a%shu[b]==0)break;
        }
    }
    ll n,m;
    while(scanf("%lld%lld",&n,&m)!=EOF)
    {
        MST(tempm,0);
        tempall=0;
        for(int a=0; a<all; a++)
        {
            //      printf("index %d\n",shu[a]);
            if(m==1)break;
            if(m%shu[a]==0)
            {
                if(m==1)break;
                while(m%shu[a]==0)
                {
                    tempm[tempall]++;
                    m/=shu[a];
                }
                ttempm[tempall++]=shu[a];
            }
        }
        if(m>1)
        {
            tempm[tempall]=1;
            ttempm[tempall++]=m;
        }
        int tempn=n;
        n--;
        ll sum=0;
        for(ll a=1; a<=n; a++)
        {
            go(n-a+1,-1);
            go(a,1);
            if(check())
                prim[sum++]=a+1;
        }
        printf("%lld\n",sum);
        for(int a=0; a<sum; a++)
        {
            if(a==0)printf("%lld",prim[a]);
            else printf(" %lld",prim[a]);
        }
        printf("\n");
    }
    return 0;
}
View Code

 

UVA - 1635

标签:pen   sign   hid   大小   shu   prim   include   print   span   

原文地址:http://www.cnblogs.com/tuquanrong/p/7358000.html

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