Mysterious Bacteria LightOJ - 1220
阿新 • • 發佈:2018-06-16
解析 air ack 表示 oid define algo stack string
題意:
給出一個數x 求 x = bp 的p的最大值
解析:
算術基本定理 分解質因數
任何一個數x都可以表示為 x = p1a1 * p2a2 * ````` * pnan
則 根號下bp == 根號下p1a1 * p2a2 * ````` * pnan
所以 p == gcd(a1,a2,·····,an);
如果x是一個負數 則p只能為奇數
先把x換成正數求出最大p之後 如果x 為負 則不斷除2 直至p為奇數
代碼如下:
#include <iostream> #include <cstdio> #include <sstream> #include<cstring> #include <map> #include <set> #include <vector> #include <stack> #include <queue> #include <algorithm> #include <cmath> #define MOD 2018 #define LL long long #define ULL unsigned long long #define maxn 1000100 #define Pair pair<int, int> #definemem(a, b) memset(a, b, sizeof(a)) #define _ ios_base::sync_with_stdio(0),cin.tie(0) //freopen("1.txt", "r", stdin); using namespace std; const int LL_INF = 0x7fffffffffffffff,INF = 0x3f3f3f3f; int primes[maxn]; bool vis[maxn]; int ans = 0; LL gcd(LL a, LL b) { return b==0?a:gcd(b,a%b); } void init() { mem(vis,0); for(int i=2; i<maxn; i++) if(!vis[i]) { primes[ans++] = i; for(LL j=(LL)i*i; j<maxn; j+=i) vis[j] = 1; } } int main() { init(); LL n; int T, kase = 0; scanf("%d",&T); while(T--) { scanf("%lld",&n); int flag = 0; int res = 0; if(n < 0) n = -n,flag = 1; for(LL i=0; primes[i] * primes[i] <= n && i < ans; i++) { int cnt2 = 0; while(n % primes[i] == 0) { n /= primes[i]; cnt2++; } if(cnt2 > 0) { if(res == 0) res = cnt2; res = gcd(res, cnt2); } } if(n > 1) { res = 1; } if(flag) { while(res % 2 == 0) res /= 2; } printf("Case %d: %d\n",++kase,res); } return 0; }
Mysterious Bacteria LightOJ - 1220