第七章 数学10 AcWing 1646. 谷歌的招聘

本文介绍了谷歌招聘中涉及的算法问题,主要聚焦于数论中的质数判断。通过自然数试除法和根据质数定理的方法来判断一个数是否为质数。代码示例展示了如何实现这两种方法,并在字符串中查找满足条件的质数子串。此外,还提供了优化的C++代码片段以提高效率。
摘要由CSDN通过智能技术生成

第七章 数学10 AcWing 1646. 谷歌的招聘

原题链接

AcWing 1646. 谷歌的招聘

算法标签

数论 筛质数 判断质数

思路

自然数试除法判断质数
枚举字符串,若该数不能整除1至 N \sqrt{N} N ,则该数是质数。
在这里插入图片描述
根据质数定理
1 1 1 N N N中质数个数为 N / l n N N/lnN N/lnN
试除法判断质数
枚举字符串,若该数不能整除primes中的所有质数,则该数也是质数。

时间复杂度

自 然 数 试 除 法 求 质 数 / l n N ≈ 3 ∗ 1 0 6 自然数试除法求质数/lnN\approx3*10^6 /lnN3106

#pragma GCC optimize(2)
#pragma GCC optimize(3)
#include<bits/stdc++.h>
#define int long long
#define x first
#define y second
#define ump unordered_map
#define ums unordered_set
#define pq priority_queue
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>=b;--i)
using namespace std;
typedef pair<int, int> PII;
const int N=10005, M=40000, INF=0x3f3f3f3f3f3f3f3f;
const double Exp=1e-8;
//int t, n, m, cnt, ans; 
int n, k, pri[M], cnt=0;
bool st[M];
char c[1005];
string s;
inline int rd(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
void put(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>=10) put(x/10);
    putchar(x%10^48);
}
void isp(){
    rep(i, 2, M){
        if(!st[i]){
            pri[cnt++]=i;
            for(int j=i*2; j<=M; j+=i){
                st[j]=true;
            }
        }
    }
}
bool is(int xx){
    for(int i=0; pri[i]<=xx/pri[i]; ++i){
        if(!(xx%pri[i])){
            return false;
        }
    }
    return true;
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	isp();
	n=rd(), k=rd();
	scanf("%s", c);
	s=c;
	bool flag=false;
	rep(i, 0, s.size()-k+1){
	    if(is(stoi(s.substr(i, k)))){
	        flag=true;
	        printf("%s\n", (s.substr(i, k)).c_str());
	        break;
	    }
	}
	if(!flag){
	    puts("404");
	}
	return 0;
}

参考文献

AcWing 1646. 谷歌的招聘(PAT甲级辅导课)y总视频讲解

原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

飞滕人生TYF

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值