//Accepted    164 KB    422 ms
 //类似poj2429 大数分解
 #include <cstdio>
 #include <cstring>
 #include <ctime>
 #include <time.h>
 #include <iostream>
 #include <algorithm>
 using namespace std;
 ;
 __int64 gcd(__int64 a,__int64 b)
 {
     ) return a;
     return gcd(b,a%b);
 }
 __int64 mult_mod(__int64 a,__int64 b,__int64 p)
 {
     __int64 res=,temp=a%p;
     while (b)
     {
         )
         {
             res+=temp;
             if (res>=p) res-=p;
         }
         temp<<=;
         if (temp>=p) temp-=p;
         b>>=;
     }
     return res;
 }
 __int64 exp_mod(__int64 a,__int64 b,__int64 p)
 {
     __int64 res=,exp=a%p;
     )
     {
         )
         res=mult_mod(res,exp,p);
         exp=mult_mod(exp,exp,p);
         b>>=;
     }
     return res;
 }
 bool miller_rabin(__int64 n,__int64 times)
 {
     ) return true;
      || !(n&)) return false;
     __int64 a,u=n-,x,y;
     ;
     ==)
     {
         t++;
         u/=;
     }
     srand(time());
     ;i<times;i++)
     {
         a=rand()%(n-)+;
         x=exp_mod(a,u,n);
         ;j<t;j++)
         {
             y=mult_mod(x,x,n);
              && x!= && x!=n-)
             return false;
             x=y;
         }
         ) return false;
     }
     return true;
 }
 __int64 pollar_rho(__int64 n,int c)
 {
     __int64 x,y,d,i=,k=;
     srand(time());
     x=rand()%(n-)+;
     y=x;
     while (true)
     {
         i++;
         x=(mult_mod(x,x,n)+c)%n;
         d=gcd(y-x,n);
          && d<n) return d;
         if (y==x) return n;
         if (i==k)
         {
             y=x;
             k<<=;
         }
     }
 }
 __int64 min_ans;
 void findMinFactor(__int64 n,int c)
 {
     ) return ;
     ))
     {
         if (n<min_ans) min_ans=n;
         return ;
     }
     __int64 p=n;
     while (p>=n)
     p=pollar_rho(p,c--);
     findMinFactor(p,c);
     findMinFactor(n/p,c);
 }
 int main()
 {
     int T;
     scanf("%d",&T);
     while (T--)
     {
         __int64 n;
         scanf("%I64d",&n);
         )==true)
         {
             printf("Prime\n");
         }
         else
         {
             min_ans=inf;
             findMinFactor(n,);
             printf("%I64d\n",min_ans);
         }
     }
     ;
 }

poj1181 大数分解的更多相关文章

  1. HDU4344(大数分解)

    题目:Mark the Rope 题意就是给一个数,然后求这个数的所有因子中组成的最大的一个子集,其中1和本身除外,使得在这个子集中元素两两互素,求最大子集的元素个 数,并且求出和最大的值. 找规律就 ...

  2. poj 1811 随机素数和大数分解(模板)

    Sample Input 2 5 10 Sample Output Prime 2 模板学习: 判断是否是素数,数据很大,所以用miller,不是的话再用pollard rho分解 miller : ...

  3. Pollard_Rho大数分解模板题 pku-2191

    题意:给你一个数n,  定义m=2k-1,   {k|1<=k<=n},并且 k为素数;  当m为合数时,求分解为质因数,输出格式如下:47 * 178481 = 8388607 = ( ...

  4. poj 1811 大数分解

    模板 #include<stdio.h> #include<string.h> #include<stdlib.h> #include<time.h> ...

  5. poj 2429 Pollard_rho大数分解

    先对lcm/gcd进行分解,问题转变为从因子中选出一些数相乘,剩下的数也相乘,要求和最小. 这里能够直接搜索,注意一个问题,因为同样因子不能分配给两边(会改变gcd)所以能够将同样因子合并,这种话,搜 ...

  6. 模板题Pollard_Rho大数分解 A - Prime Test POJ - 1811

    题意:是素数就输出Prime,不是就输出最小因子. #include <cstdio> #include<time.h> #include <algorithm> ...

  7. 【模板】SPOJ FACT0 大数分解 miller-rabin & pollard-rho

    http://www.spoj.com/problems/FACT0/en/ 给一个小于1e15的数,将他分解. miller-rabin & pollard-rho模板 #include & ...

  8. 数学--数论---P4718 Pollard-Rho算法 大数分解

    P4718 [模板]Pollard-Rho算法 题目描述 MillerRabin算法是一种高效的质数判断方法.虽然是一种不确定的质数判断法,但是在选择多种底数的情况下,正确率是可以接受的.Pollar ...

  9. poj2429 大数分解+dfs

    //Accepted 172 KB 172 ms //该程序为随机性算法,运行时间不定 #include <cstdio> #include <cstring> #includ ...

随机推荐

  1. Java软件工程师全栈技能

    1.前端基础技能,掌握html.js.css,会用jquery.bootstrap. 2.前端技能升级,会用echart.BMap等等. 3.前端高级技能,熟练使用angularjs等等. 4.服务端 ...

  2. poj-----(2528)Mayor's posters(线段树区间更新及区间统计+离散化)

    Mayor's posters Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 43507   Accepted: 12693 ...

  3. debug && release

    http://www.cnblogs.com/awpatp/archive/2009/11/05/1597038.html Debug 通常称为调试版本,它包含调试信息,并且不作任何优化,便于程序员调 ...

  4. 分享一个快速的Json(反)序列化开源项目 Jil

    我们不缺少JSON的序列化库,但我们缺少一个性能非常好的库,这对于网站来说非常重要.今天我发现了Jil. 他是开源的代码: https://github.com/kevin-montrose/Jil ...

  5. 一个Java递归程序

    先来没事搜了一些面试题来做,其中一道:输入一个整数,求这个整数中每位数字相加的和? 思考:1.如何或得每一位数:假如是1234,   1234%10=4,得到个位:(1234/10)%10=3得到十位 ...

  6. JNI的一些知识:

    JNI字段描述符"([Ljava/lang/String;)V" 2012-05-31 12:16:09| 分类: Android |举报|字号 订阅 "([Ljava/ ...

  7. sqlite多表关联update

    sqlite数据库的update多表关联更新语句,和其他数据库有点小不一样 比如:在sql server中: 用table1的 id 和 table2的 pid,关联table1 和 table2 , ...

  8. Echarts 地图控件tooltip多行显示

    直接上代码 var o = { "tooltip": { trigger: 'item', "formatter": function (params) { v ...

  9. IT公司100题-9-判断整数序列是不是二元查找树的后序遍历结果

    问题描述: 输入一个整数数组,判断该数组是不是某二元查找树的后序遍历的结果. 如果是返回true,否则返回false. 例如输入4, 8, 6, 12, 16, 14, 10,由于这一整数序列是如下树 ...

  10. 【个人使用.Net类库】(2)Log日志记录类

    开发接口程序时,要保证程序稳定运行就要时刻监控接口程序发送和接收的数据,这就需要一个日志记录的类将需要的信息记录在日志文件中,便于自己维护接口程序.(Web系统也是如此,只是对应的日志实现比这个要复杂 ...