首页 > 代码库 > hdu3826 Squarefree number
hdu3826 Squarefree number
题目链接:
传送门
题目:
Squarefree number
Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2047 Accepted Submission(s): 540
Problem Description
In mathematics, a squarefree number is one which is divisible by no perfect squares, except 1. For example, 10 is square-free but 18 is not, as it is divisible by 9 = 3^2. Now you need to determine whether an integer is squarefree or not.
Input
The first line contains an integer T indicating the number of test cases.
For each test case, there is a single line contains an integer N.
Technical Specification
1. 1 <= T <= 20
2. 2 <= N <= 10^18
For each test case, there is a single line contains an integer N.
Technical Specification
1. 1 <= T <= 20
2. 2 <= N <= 10^18
Output
For each test case, output the case number first. Then output "Yes" if N is squarefree, "No" otherwise.
Sample Input
2 30 75
Sample Output
Case 1: Yes Case 2: No
Author
hanshuai
Source
The 6th Central China Invitational Programming Contest and 9th Wuhan University Programming Contest Final
Recommend
lcy | We have carefully selected several similar problems for you: 3823 3818 3819 1060 3822
因为数的范围为10的18次方,那么它的因子必须是小于10的6次方的,则n*n*n>10的18次方,所以打一个1000000的素数表,
首先是素数表,用筛法打素数表。复杂度为O(ologn),应该是目前来说最快的吧。。
如果一个数在整除素数1000000后任然大于10的6次方的话,则将其开方后再乘。详情参见小白178面。
有个非常详细的讲解的。
传送门 讲的非常好。。
我的代码如下:
#include<cstdio> #include<cstring> #include<cmath> const int maxn=80000+10; const int n=1000000; int prime[maxn],vis[n]; __int64 N; int pos; int init() { int c=0; int m; memset(vis,0,sizeof(vis)); m=sqrt(n+0.5); for(int i=2;i<=m;i++) { if(!vis[i]) { for(int j=i*i;j<=n;j+=i) vis[j]=1; } } for(int i=2;i<=n;i++) { if(!vis[i]) prime[c++]=i; } return c; } int judge() { for(int i=0;i<pos;i++) { while(N%prime[i]==0) { N=N/prime[i]; if(N%prime[i]==0) return 0; } } return 1; } int main() { __int64 x; int i,t,cas=1,ok; pos=init(); scanf("%d",&t); while(t--) { ok=1; scanf("%I64d",&N); if(!judge()) ok=0; if(N>1000000) { x=(int)sqrt(double(N)); if(x*x==N) ok=0; } if(ok) printf("Case %d: Yes\n",cas++); else printf("Case %d: No\n",cas++); } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。