SRM 400 DIV2 [500]

本文介绍了一种用于判断一个给定整数是否为强质数幂的算法,并提供了具体的实现代码。该算法能有效识别特定形式的数pq,其中p为质数,q为大于1的整数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include<iostream>
#include
<string>
#include
<vector>
#include
<set>
#include
<algorithm>
#include
<memory.h>
#include
<cmath>
#include
<cstdio>
using namespace std;

long long num;

bool is(int p,int q)
{
    
long long temp=1;
    
for (int i=0;i!=q;++i)
        temp
*=(long long)p;
    
if (temp!=num) return false;
    
for (int i=2;i*i<=p;++i)
        
if (p%i==0return false;
    
return true;
}


class StrongPrimePower{
public:
    vector 
<int> baseAndExponent(string n)
    
{
        vector
<int> ans;
        sscanf(n.c_str(),
"%lld",&num);
        
double f=num;
        
for (int i=2;i!=65;++i){
            
int p=pow(f,(double)1/i)+0.5;
            
if (is(p,i)){
                ans.push_back(p);
                ans.push_back(i);
                
return ans;
            }

        }

        
return ans;
    }

}
;

Problem Statement

    

NOTE: This problem statement contains superscripts that may not display properly if viewed outside of the applet.

A number which can be represented as pq, where p is a prime number and q is an integer greater than 0, is called a prime power. If q is larger than 1, we call the number a strong prime power. You are given an integer n. If n is a strong prime power, return an vector <int> containing exactly two elements. The first element is p and the second element is q. If n is not a strong prime power, return an empty vector <int>.

Definition

    
Class: StrongPrimePower
Method: baseAndExponent
Parameters: string
Returns: vector <int>
Method signature: vector <int> baseAndExponent(string n)
(be sure your method is public)
    
 

Constraints

- n will contain digits ('0' - '9') only.
- n will represent an integer between 2 and 10^18, inclusive.
- n will have no leading zeros.

Examples

0)  
    
"27"
Returns: {3, 3 }
27 = 33. This is a strong prime power.
1)  
    
"10"
Returns: { }
10 = 2 * 5. This is not a strong prime power.
2)  
    
"7"
Returns: { }
A prime number is not a strong prime power.
3)  
    
"1296"
Returns: { }
 
4)  
    
"576460752303423488"
Returns: {2, 59 }
 
5)  
    
"999999874000003969"
Returns: {999999937, 2 }
 

This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值