PAT-A 1015. Reversible Primes (20)

传送门

https://www.patest.cn/contests/pat-a-practise/1015

题目

A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime.
Now given any two positive integers N (< 10^5) and D (1 < D <= 10), you are supposed to tell if N is a reversible prime with radix D.
Input Specification:
The input file consists of several test cases. Each case occupies a line which contains two integers N and D. The input is finished by a negative N.
Output Specification:
For each test case, print in one line "Yes" if N is a reversible prime with radix D, or "No" if not.
Sample Input:
73 10
23 2
23 10
-2
Sample Output:
Yes
Yes
No

分析

题意:
给出一个10进制数N和进制D,先化成给定进制D的数,然后翻转,再化成10进制数N'进行验证其是否是质数(素数),若翻转前的数N和翻转后的数N'均为质数,则输出Yes,否则,输出No。

我单独写了一个翻转的函数,先计算出10进制N的D进制数,然后再计算翻转后D进制数的10进制数N',最后用开始建立好的质数表来判断其是否为质数,最后按要求输出即可。

源代码

//C/C++实现
#include <iostream>
#include <vector>
#include <cmath>

using namespace std;

bool isNotPrime[100000] = {true, true};

int reverse(int n, int d){
    int tmp = n;
    vector<int> v;
    while(tmp){
        v.push_back(tmp % d);
        tmp /= d;
    }
    int count = 0, sum = 0, size = v.size();
    for(int i = 0; i < size; ++i){
        sum += v[i] * pow(d, size - i - 1);
    }
    return sum;
}

int main(){
    //create prime table
    for(int i = 2; i < 50000; ++i){
        for(int j = 2; i * j < 100000; ++j){
            isNotPrime[i * j] = true;
        }
    }
    int n, d;
    scanf("%d", &n);
    while(n > 0){
        scanf("%d", &d);
        if(!isNotPrime[n] && !isNotPrime[reverse(n, d)]){
            printf("Yes\n");
        }
        else{
            printf("No\n");
        }
        scanf("%d", &n);
    }
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,923评论 18 139
  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,769评论 0 33
  • ——从颐和园到凤凰城 所去过的旅游景点中,北京的颐和园应该算是比较令人印象深刻的,这个昔日的皇家园林山水相依,风光...
    凌晨九点十分阅读 743评论 0 1
  • OS X总算改名为MacOS了,这样苹果的几个OS名字总算统一起来,我们也不用老是说OS X这个绕口的名字了。并且...
    老乔理查德阅读 647评论 0 1
  • 文/李少白 你可愿意 愿意从春的角度多看我一眼 你可愿意 愿意从冰河初开的时节向我走来 我愿意 愿意把你从一抹新绿...
    文艺痞阅读 1,693评论 0 0