素数Eratosthenes筛选
Posted som_nico
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了素数Eratosthenes筛选相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int inf = 0x3f3f3f3f; int main() { /*素数筛选*/ /*Eratosthenes筛选*/ /*确定某一个数是素数之后,删除这个数的所有的倍数*/ int n; cin >> n; memset(vis, 0, sizeof(vis)); for(int i = 2; i <= sqrt(n); i++) if(!vis[i]) for(int j = i * i; j <= n; j += i) vis[j] = 1; }
以上是关于素数Eratosthenes筛选的主要内容,如果未能解决你的问题,请参考以下文章
algorithm@ Sieve of Eratosthenes (素数筛选算法) & Related Problem (Return two prime numbers )