博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数论 --- 费马小定理 + 快速幂 HDU 4704 Sum
阅读量:6392 次
发布时间:2019-06-23

本文共 1231 字,大约阅读时间需要 4 分钟。

Sum 

Problem's Link:   http://acm.hdu.edu.cn/showproblem.php?pid=4704


 

Mean: 

给定一个大整数N,求1到N中每个数的因式分解个数的总和。

 

analyse:

N可达10^100000,只能用数学方法来做。

首先想到的是找规律。通过枚举小数据来找规律,发现其实answer=pow(2,n-1);

分析到这问题就简单了。由于n非常大,所以这里要用到费马小定理:a^n ≡ a^(n%(m-1)) * a^(m-1)≡ a^(n%(m-1)) (mod m) 来优化一下,不然直接用快速幂会爆。

Time complexity: O(n)

 

Source code: 

 

/** this code is made by crazyacking* Verdict: Accepted* Submission Date: 2015-05-22-21.21* Time: 0MS* Memory: 137KB*/#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long#define ULL unsigned long longusing namespace std;const int mod=1e9+7;const int MAXN=100010;char s[MAXN];long long quickPower(long long a,long long b,long long m){ long long ans=1; while(b) { if(b&1) ans=(ans*a)%m,b--; b/=2,a=a*a%m; } return ans;}int main(){ ios_base::sync_with_stdio(false); cin.tie(0); while(~scanf("%s",s)) { ULL n=0; for(int i=0;s[i];++i) n=(n*10+s[i]-'0')%(mod-1); printf("%d\n",(int)quickPower(2,((n-1)%(mod-1))%mod,mod)); } return 0;}/**/
View Code

 

转载于:https://www.cnblogs.com/crazyacking/p/4523210.html

你可能感兴趣的文章
Hadoop2.4.1分布式安装
查看>>
PHP利用socket来实现POST数据
查看>>
Connection is read-only问题的产生原因与解决方法
查看>>
Proxmox VE 部署维护
查看>>
Linux软件包安装与卸载
查看>>
centos5.x安装sphinx
查看>>
3分钟搭建Ant Design Pro前端开发环境( MyClouds的前端选型)
查看>>
Linux系统常用命令(二)
查看>>
简单的工厂模式学习
查看>>
温习如何画E-R图
查看>>
eclispe注释模板
查看>>
Thymeleaf教程 (三) 创建一个多语言的首页
查看>>
OSChina 周六乱弹 ——你们猜狗的舌头有多长
查看>>
OSChina 周日乱弹 —— 爱丽丝爱吃京酱肉丝
查看>>
2018.11月微信小程序优质开源项目
查看>>
IOS 未来几年的认知
查看>>
解决中文乱码--加密
查看>>
浅析全民社交创业梦
查看>>
Java操纵MongoDB_1(环境设置)
查看>>
C#字符串操作--获取字符或字符串的位置、数量
查看>>