博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hihocoder1187 Divisors
阅读量:5102 次
发布时间:2019-06-13

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

时间限制:
10000ms
单点时限:
1000ms
内存限制:
256MB

描述

Given an integer n, for all integers not larger than n, find the integer with the most divisors. If there is more than one integer with the same number of divisors, print the minimum one.

输入

One line with an integer n.

For 30% of the data, n ≤ 103

For 100% of the data, n ≤ 1016

输出

One line with an integer that is the answer.

样例输入
100
样例输出
60 _______________________________________ Solution: 将正整数n进行质因数分解:   n = p1^k1 * p2^k2 * ... * pm^km   (p1 < p2 < ... < pm) 易见,n的因子数为   (1+k1)*(1+k2)*...*(1+km) 接下来考虑不超过N的正整数中,因子数最多且最小的数,记为s(N)。 我们可以推导出s(N)的质因数分解的形式有下列特征: (1)  s(N) = 2^k1 * 3^k2 * 5^k3 * ...* p[i]^ki * ... *p[m]^km 式中p[i]表示第i个质数。 (2)  k1 <= K2 <= k3 <= ... <=km 可概括为: (1)质因子连续 (2)指数单调不增 因此可采取暴力搜索(DFS)的办法求解。 ———————————————————————————————————— Complexity: 前14个质数的乘积为 13082761331670030 ~ 1.3E16 所以搜索层数最多为13层,复杂度可大胆估计为2^13,这里不需要估计得比较准确。 ———————————————————————————————————————————————————————————— Implementation:
#include 
using namespace std;typedef long long LL;const int N(105);bool p[N];int P[N];int np;void seive(int n){ memset(p, 1, sizeof(p)); p[0]=p[1]=0; for(int i=2; i<=n; i++){ if(p[i]) P[np++]=i; for(int j=i<<1; j<=n; j+=i) p[j]=0; }}LL ans, val, n;void dfs(int lev, LL res, int cnt, LL v){ if(v*P[lev]>n){ if(res>ans){ ans=res; val=v; } else if(res==ans&&val>v) val=v; } else{ for(int i=1; v*P[lev]<=n&&i<=cnt; i++){ v*=P[lev]; dfs(lev+1, res*(i+1), i, v); } }}int main(){ seive(100); cin>>n; val=n; dfs(0, 1, 100, 1); cout<
<

 

 

 

转载于:https://www.cnblogs.com/Patt/p/5296341.html

你可能感兴趣的文章
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
Hash和Bloom Filter
查看>>
SQL Server获取月度列表
查看>>
python常用函数
查看>>
python 描点画圆
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
pycharm 如何设置方法调用字体颜色
查看>>
VUE源码解析心得
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
整体二分——[Poi2011]Meteors
查看>>
数据库3
查看>>
delphi之事件
查看>>
windows server 2008 r2 安装
查看>>
Enigma –> Sadness
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>