Duff in Love_数论_素因子应用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Duff in Love_数论_素因子应用相关的知识,希望对你有一定的参考价值。
Duff in Love
Duff is in love with lovely numbers! A positive integer x is called lovely if and only if there is no such positive integer a > 1 such that a2 is a divisor of x.
Malek has a number store! In his store, he has only divisors of positive integer n (and he has all of them). As a birthday present, Malek wants to give her a lovelynumber from his store. He wants this number to be as big as possible.
Malek always had issues in math, so he asked for your help. Please tell him what is the biggest lovely number in his store.
The first and only line of input contains one integer, n (1 ≤ n ≤ 1012).
Print the answer in one line.
10
10
12
6
In first sample case, there are numbers 1, 2, 5 and 10 in the shop. 10 isn‘t divisible by any perfect square, so 10 is lovely.
In second sample case, there are numbers 1, 2, 3, 4, 6 and 12 in the shop. 12 is divisible by 4 = 22, so 12 is not lovely, while 6 is indeed lovely.
按照题意, 获得最大的数, 该数里面没有m*m存在。
转化成获得里面的所有不重复的素因子之积。
除外, 还需优化, 详见注释。
代码:
#include <cstdio> #include <cmath> using namespace std; typedef long long ll; ll num, tmp, cnt, i; int main(void) { scanf( "%I64d", &num ); cnt = 1; for( i=2; i <= num; ){ if( !(num%i) ){ cnt *= i; // 去除重复素因子 while( !(num%i) ){ num/=i; } } // 优化, 若 i*i 大于 num, 直接 累乘。 if( i > sqrt( num ) ){ cnt *= num; break; } ++ i; } printf( "%I64d\n", cnt ); return 0; }
以上是关于Duff in Love_数论_素因子应用的主要内容,如果未能解决你的问题,请参考以下文章