elpsconr @ 2024-05-08 22:32:15
题解看到的,有点不懂,为啥bitset用在欧拉筛上反而比埃氏筛还慢了,也比原来用bool数组慢
#include<bits/stdc++.h>
using namespace std;
const int N=1e8+6;
int n,q,prime[N],cnt;
bitset<N> st;
void iget(int x)
{
for(int i=2;i*i<=x;++i)
{
if(!st[i])
{
for(int j=i*i;j<=x;j+=i) st[j]=1;
}
}
for(int i=2;i<=x;++i)
{
if(!st[i]) prime[++cnt]=i;
}
}
void get(int x)
{
for(int i=2;i<=x;++i)
{
if(!st[i]) prime[++cnt]=i;
for(int j=1;prime[j]*i<=x&&j<=cnt;++j)
{
st[prime[j]*i]=1;
if(i%prime[j]==0) break;
}
}
}
int main()
{
cin.tie(0)->sync_with_stdio(0);
cin>>n>>q;
iget(n);
while(q--)
{
int k;cin>>k;
cout<<prime[k]<<endl;
}
}
by wly09 @ 2024-05-09 00:12:18
@elpsconr 对于你的问题:
bitset
比 bool
数组慢的情况”,相反,总时间 bitset
比 bool
数组快 bitset
的优化是可以放心使用的;bitset
常数优化确实给力。by elpsconr @ 2024-05-09 00:20:26
@wly09 感谢,主要还是不理解欧拉筛慢于埃氏筛,受教了