lightoj 1220


1220 - Mysterious Bacteria
Time Limit: 0.5 second(s)Memory Limit: 32 MB

Dr. Mob has just discovered a Deathly Bacteria. He named itRC-01. RC-01 has a very strange reproduction system. RC-01 lives exactly xdays. Now RC-01 produces exactly p new deadly Bacteria where x = bp(where b, p are integers). More generally, x is a perfect pthpower. Given the lifetime x of a mother RC-01 you are to determine themaximum number of new RC-01 which can be produced by the mother RC-01.

Input

Input starts with an integer T (≤ 50),denoting the number of test cases.

Each case starts with a line containing an integer x.You can assume that x will have magnitude at least 2 and be within therange of a 32 bit signed integer.

Output

For each case, print the case number and the largest integerp such that x is a perfect pth power.

Sample Input

Output for Sample Input

3

17

1073741824

25

Case 1: 1

Case 2: 30

Case 3: 2


题意:给定x,让你找到一个最大的p,使得某个数的p次方正好是x。

分析:开始并不知道x还可能是负数,wrong了无数。。先说正数的情况,很自然的会想到把x进行因数分解,然后从每个质数的次方数中找到最大的p。多举几个例子就可以看出来最大的p就是每个质数的次方数的最小公倍数。。

对于负数的情况,显然负数的偶次幂是正数,如果算出来负数对应的正数的最大的p是偶数,那么应该把它不断除二直到它是奇数。


#include<bitset>
#include<map>
#include<vector>
#include<cstdio>
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<stack>
#include<queue>
#include<set>
#define inf 0x3f3f3f3f
#define mem(a,x) memset(a,x,sizeof(a))

using namespace std;

typedef long long ll;
typedef pair<int,int> pii;

inline int in()
{
    int res=0;char c;
    while((c=getchar())<'0' || c>'9');
    while(c>='0' && c<='9')res=res*10+c-'0',c=getchar();
    return res;
}
const int N=50100;
bitset<N> vis;
int prime[N>>3];
int cnt[N];
int ans[N>>3];
int p;
int gcd(int a,int b)
{
    return b==0? a : gcd(b,a%b);
}
int main()
{
    for(int i=2;i<N;i++)
    {
        if(!vis[i])
        {
            prime[p++]=i;
            for(ll j = 1LL*i*i;j<N;j+=i) vis[j]=1;
        }
    }
    int T=in(),ii=1;
    ll n;
    while(T--)
    {
        scanf("%lld",&n);
        bool flag=0;
        if(n<0)n=-n,flag=1;

        mem(cnt,0);
        bool ok=1;
        int c=0;
        for(int i=0;i<p && 1LL*prime[i]*prime[i]<=n;i++)
        {
            if(n%prime[i]==0)
            {
                ans[c++]=prime[i];
                while(n%prime[i] == 0)
                {
                    cnt[prime[i]]++;
                    n /= prime[i];
                }
            }
        }
        if(n>1)
        {
            printf("Case %d: %d\n",ii++,1);
            continue;
        }

        int tmp = cnt[ans[0]];
        for(int i=1;i<c;i++)
        {
            tmp = gcd(tmp,cnt[ans[i]]);
        }
        if(flag && tmp%2==0)
        {
            while(tmp%2==0) tmp>>=1;
            printf("Case %d: %d\n",ii++,tmp);
            continue;
        }
        printf("Case %d: %d\n",ii++,tmp);

    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值