求大佬看看TLE了最后一个点,我是先筛质数再判断回文超,最后时了

P1217 [USACO1.5] 回文质数 Prime Palindromes

ljx_gkx @ 2023-03-26 17:22:46

#include<iostream>
#include<cstring>
#include<algorithm>

using namespace std;

const int N = 1e8+10;
int a, b;
int primes[N];  //质数的数组! 
bool st[N];
int cnt;

void is_prime(int n)
{
    for (int i=2; i <= n; i ++)
    {
        if (!st[i]) primes[cnt ++] = i;
        for (int j=0; primes[j]*i <= n; j ++)
        {
            st[primes[j]*i] = true;
            if (i % primes[j] == 0) break;
        }
    }
}

bool huiwen (int nums)
{
    string str = to_string(nums);
    int l=0, r=str.size()-1;
    while (l < r)
    {
        if (str[l++] != str[r--])
            return false;
    }

    return true;
}

int main()
{
    cin >> a >> b;
    is_prime(b);    

    for (int i=0; i < cnt; i ++)
    {
        if (primes[i] >= a && primes[i] <= b)
            if (huiwen(primes[i]))
                cout << primes[i] << endl;
    }
    return 0;
}

by cyyy0408 @ 2023-03-27 12:01:56

题目提示说了:找出所有的回文数再判断它们是不是质数(素数)


by cyyy0408 @ 2023-03-27 19:03:48

数据范围内的质数肯定比回文数要多,所以要把数据范围内的回文数存入hw数组,然后判断是否是质数


by cyyy0408 @ 2023-03-27 22:32:02

范围内最大的回文质数是9989899,超过10000000的没有,自己测


上一页 |