SPOJ TDKPRIME - Finding the Kth Prime





N:B: Use bool type vector to store status as upper limit is 10^8






#include <bits/stdc++.h>
using namespace std;
#define n 100000000
vector<bool> a(100000000,true);
long long int p[n],k=1,size;
long long int prime()
{
long long i,j;
a[0]=a[1]=false;
for(i=4;i<=n;i=i+2)
{
a[i]=false;
}
for(i=3;i<=sqrt(n);i=i+2)
{
for(j=i*i;j<=n;j=j+2*i)
{
a[j]=false;
}
}
p[0]=2;
for(i=3;i<=n;i=i+2)
{
if(a[i]==true)
{
p[k]=i;

k++;

}
}


}


int main()
{
long long int t,u,l,w,z;

prime();

cin>>t;
for(l=1;l<=t;l++)
{
cin>>u;
cout<<p[u-1]<<endl;
}

return 0;
}

Download Coding Interview Book and Get More Tutorials for Coding and Interview Solution: Click Here

Download System Design Interview Book and Get More Tutorials and Interview Solution: Click Here

Do you need more Guidance or Help? Then Book 1:1 Quick Call with Me: Click Here

Share on Google Plus

About Ashadullah Shawon

I am Ashadullah Shawon. I am a Software Engineer. I studied Computer Science and Engineering (CSE) at RUET. I Like To Share Knowledge. Learn More: Click Here
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment