• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
村雨sup
自己选的路,跪着也要走完 XD
博客园    首页    新随笔    联系   管理    订阅  订阅
PAT 1015 Reversible Primes
1015 Reversible Primes (20 分)
 

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 (<) and D (1), 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

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define maxnum 100005

bool check[maxnum];
int prime[maxnum] = {0};


void isprime(){
    int cnt = 0;
    memset(check,true,sizeof(check));
    for(int i=2;i < maxnum;i++){
        if(check[i])prime[++cnt] = i;
        for(int j=1;j <= cnt;j++){
            if(i*prime[j] > maxnum)break;
            check[i*prime[j]] = false;
            if(i%prime[j] == 0)break;
        }
    }
}






int main(){
    int a,b;
    isprime();
    check[0] = false;
    check[1] = false;

//    for(int i=0;i < 1000;i++){
//        cout << check[i] << " ";
//    }
    while(scanf("%d",&a)){
        if(a < 0) break;
        scanf("%d",&b);
        vector<int> vec;
        int t = a;
        while(a){
            vec.push_back(a%b);
            a = a/b;
        }
        int sum = 0;
        int cnt = 1;
        for(int i=vec.size()-1;i >= 0;i--){
            sum += cnt*vec[i];
            cnt *= b;
        }
        if(check[sum]&&check[t]) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
    return 0;
}

复习欧拉筛

posted on 2019-04-11 14:45  村雨sup  阅读(99)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3