Codeforces1062B. Math(合数分解)
题目链接:传送门
题目:
B. Math
time limit per test
second
memory limit per test
megabytes
input
standard input
output
standard output JATC's math teacher always gives the class some interesting math problems so that they don't get bored. Today the problem is as follows. Given an integer n , you can perform the following operations zero or more times: mul x : multiplies n by x (where x
is an arbitrary positive integer).
sqrt: replaces n
with n−−√ (to apply this operation, n−−√ must be an integer). You can perform these operations as many times as you like. What is the minimum value of n , that can be achieved and what is the minimum number of operations, to achieve that minimum value? Apparently, no one in the class knows the answer to this problem, maybe you can help them?
Input The only line of the input contains a single integer n
(≤n≤ ) — the initial number.
Output Print two integers: the minimum integer n that can be achieved using the described operations and the minimum number of operations required.
Examples
Input
Copy Output
Copy Input
Copy Output
Copy Note In the first example, you can apply the operation mul
to get and then sqrt to get . In the second example, you can first apply sqrt to get
, then mul to get and finally two more sqrt and you get . Note, that even if the initial value of n
is less or equal , it can still become greater than after applying one or more operations.
题目大意:
输入一个数n,对这个数可以进行两种操作:
(1)乘上一个任意大小的整数;
(2)取平方根。(这里要求取平方根前必须为完全平方数)
问使得输入的n经过任意次操作变成最小值时,输出这个最小值和变成最小值所需要的最少的操作数。
1 ≤ n ≤ 106。
思路:
①:n的最小值为它所有质因子的乘积;(如果有一个质因子的指数大于1,那么就不是最小的,而且通过操作②③变成最小的)
②:操作(1)最多只需要执行一次,用这次操作把n所有质因子的指数都变成相同的,并且这个指数的值为2的幂次(取平方根时幂次会/=2);
③:操作(2)的次数就是②步骤结束后,log2(质因子的指数)。
然后把②和③的次数合起来就好了。
实现:
试除法筛出n所有的质因子pi及其指数ci,则第一个答案a = $\prod_{i=1}^{fatCnt}p_{i}$。(fatCnt为质因子的数量)
令b = max(ci),令2t为最小的不小于b的2的幂次。
①:如果t为0,那么答案为0;(n不可能变得更小了)
②:只要有一个ci < 2t,答案就为t+1;(必须要执行一次操作(1),才能不断的开方)
③:如果所有的ci = 2t,答案为t。(此时不执行操作(1),就可以不断开方直到最小)
代码:
(马上去补!)
比赛代码:
#include <bits/stdc++.h> using namespace std;
const int MAX_N = ;
int prime[MAX_N+];
void getPrime()
{
memset(prime, , sizeof prime);
for (int i = ; i <= MAX_N; i++) {
if (!prime[i]) prime[++prime[]] = i;
for (int j = ; j <= prime[] && prime[j] <= MAX_N/i; j++) {
prime[prime[j]*i] = ;
if (i%prime[j] == ) break;
}
}
} int factor[][];
int fatCnt;
int getFactors(int x)
{
fatCnt = ;
int tmp = x;
for (int i = ; prime[i] <= tmp/prime[i]; i++) {
if (tmp % prime[i] == ) {
factor[fatCnt][] = prime[i];
factor[fatCnt][] = ;
while (tmp % prime[i] == ) {
factor[fatCnt][]++;
tmp /= prime[i];
}
fatCnt++;
}
}
if (tmp > ) {
factor[fatCnt][] = tmp;
factor[fatCnt][] = ;
fatCnt++;
}
return fatCnt;
} int getbin(int x)
{
int tmp = ;
while (tmp < x) {
tmp <<= ;
}
return tmp;
} bool check(int ansb)
{//ÊÇ·ñÓв»Í¬
int cnt = factor[][];
if (cnt != (<<ansb))
return true;
for (int i = ; i < fatCnt; i++) {
if (factor[i][] != cnt)
return true;
}
return false;
} //int bin[21];
int main() {
// bin[0] = 1;
// for (int i = 1; i < 21; i++) bin[i] = bin[i-1] << 1;
getPrime();
int N;
cin >> N;
getFactors((int)N);
int a = , b = ;
for (int i = ; i < fatCnt; i++) {
a *= factor[i][];
b = max(b, getbin(factor[i][]));
}
int ansb = ;
while (b > ) {
ansb++;
b >>= ;
}
if (ansb > && check(ansb)) {
ansb++;
}
cout << a << ' ' << ansb << endl;
return ;
}
Codeforces1062B. Math(合数分解)的更多相关文章
- HDU 4610 Cards (合数分解,枚举)
Cards Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submi ...
- HDU 4497 GCD and LCM (合数分解)
GCD and LCM Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)Total ...
- hdu_4497GCD and LCM(合数分解)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4497 GCD and LCM Time Limit: 2000/1000 MS (Java/Other ...
- hdu 5317 合数分解+预处理
RGCDQ Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submi ...
- hdu 4777 树状数组+合数分解
Rabbit Kingdom Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) T ...
- Perfect Pth Powers pku-1730(筛+合数分解)
题意:x可以表示为bp, 求这个p的最大值,比如 25=52, 64=26, 然后输入x 输出 p 就是一个质因子分解.算法.(表示数据上卡了2个小时.) 合数质因子分解模板. ]; ]; ; ;n ...
- pku1365 Prime Land (数论,合数分解模板)
题意:给你一个个数对a, b 表示ab这样的每个数相乘的一个数n,求n-1的质数因子并且每个指数因子k所对应的次数 h. 先把合数分解模板乖乖放上: ; ans != ; ++i) { ) { num ...
- 莫比乌斯函数 51nod-1240(合数分解试除法)
就是输出n时,莫比乌斯函数的值.直接将n唯一分解即可. 思路:筛出105以内的素数,因为109开方,105就差不多.当一个大数还没有被1000个素数分解,那么这个数基本上可以认为是素数(为合数为小概率 ...
- csu 1801(合数分解+排列组合)
1801: Mr. S’s Romance Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 15 Solved: 5[Submit][Status][W ...
随机推荐
- 动态从数据库获取数据,省市县三级联动,有校验,导出Excel模板
话不多说,看效果图,直接上代码. sheet 商户表 hideSheet ,功能完成后隐藏的Sheet,用于储存下拉框中的信息,(以一定的规则将所需数据存储在表格中). 下面是代码 部分数据需要在导 ...
- SIP 编解码器
编解码器,编码器 - 解码器的简称,做两个基本操作 - 首先,它将模拟语音信号转换为其等效数字形式,以便可以容易地发送. 此后,它将压缩的数字信号转换回其原始模拟形式,以便可以重放. 市场上有许多编解 ...
- loj2353. 「NOI2007」 货币兑换
loj2353. 「NOI2007」 货币兑换 链接 https://loj.ac/problem/2353 思路 题目不重要,重要的是最后一句话 提示 输入文件可能很大,请采用快速的读入方式. 必然 ...
- BZOJ 4480 [JSOI2013] 快乐的jyy
思路 两个字符串都插入回文自动机中(每次重置last) 最后统计两个right集合的大小就好了 代码 #include <cstdio> #include <algorithm> ...
- Learning-Python【5】:Python数据类型(1)—— 整型、浮点型、字符串
一.整型 1.用途:记录年龄.等级.各种号码等 2.定义方式 age = 22 只能将纯数字的字符串转换成整型 3.常用操作+内置方法 赋值运算.比较运算.算数运算 该类型总结: 存一个值 不可变(可 ...
- 线性回归(linear regression)
基本形式 最小二乘法估计拟合参数 最小二乘法:基于均方误差最小化来进行模型求解的方法称为“最小二乘法”(least square method) 即(左边代表 $\mathbf{\omega }$ 和 ...
- 全文检索:haystack+elasticsearch
优点: 1.查询速度快 2.支持中文分词准备工作:安装es软件 1.拷贝到ubuntu 2.docker load -i 文件路径 3.配置 修改ip地址 4.docker run -dti --ne ...
- Nearest neighbor graph | 近邻图
最近在开发一套自己的单细胞分析方法,所以copy paste事业有所停顿. 实例: R eNetIt v0.1-1 data(ralu.site) # Saturated spatial graph ...
- Luffy之结算订单页面(订单模型表的创建,订单的生成,以及订单详情展示等)
订单页面 在前面我们已经构建了,购物车的页面,接下来到了结算页面 1.首先,在购物车页面点击去结算按钮时,我们需要做如下动作 .前端发送生成订单的请求,点击标签内触发事件 create_order t ...
- 菜鸟脱壳之脱壳的基础知识(二) ——DUMP的原理
菜鸟脱壳之脱壳的基础知识(二)——DUMP的原理当外壳的执行完毕后,会跳到原来的程序的入口点,即Entry Point,也可以称作OEP!当一般加密强度不是很大的壳,会在壳的末尾有一个大的跨段,跳向O ...