POJ 2478Farey Sequence
2018-06-17 21:20:03来源:未知 阅读 ()
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 17744 | Accepted: 7109 |
Description
F2 = {1/2}
F3 = {1/3, 1/2, 2/3}
F4 = {1/4, 1/3, 1/2, 2/3, 3/4}
F5 = {1/5, 1/4, 1/3, 2/5, 1/2, 3/5, 2/3, 3/4, 4/5}
You task is to calculate the number of terms in the Farey sequence Fn.
Input
Output
Sample Input
2 3 4 5 0
Sample Output
1 3 5 9
Source
给n,求ans[n]。其中$ans[n]=ans[n-1]+phi[n]$,且n的范围比较大,在10的6次以内。则考虑打表解决。
先得到能整除i的最小正整数$md[i]$(一定是个素数),再利用性质3,得到$phi[i]$
#include<iostream> #include<cstdio> #include<cmath> #include<cstring> #define LL long long using namespace std; const LL MAXN=3*1e6+10; LL prime[MAXN],tot=0,vis[MAXN],phi[MAXN],N; void GetPhi() { for(LL i=2;i<=N;i++) { if(!vis[i]) { prime[++tot]=i; phi[i]=i-1; } for(LL j=1;j<=tot&&prime[j]*i<=N;j++) { vis[ i*prime[j] ] = 1; if(i%prime[j]==0) { phi[ i*prime[j] ]=phi[i]*prime[j]; break; } else phi[ i*prime[j] ]=phi[i]*(prime[j]-1); } } for(LL i=1;i<=N;i++) phi[i]=phi[i]+phi[i-1]; } int main() { N=2*1e6+10; GetPhi(); while(cin>>N&&N!=0) printf("%lld\n",phi[N]); return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:第七届蓝桥杯 密码脱落
- POJ-3278 2020-04-01
- Longest Ordered Subsequence 2020-02-09
- common subsequence 2020-02-09
- Asteroids!_poj2225 2020-02-09
- poj-1753题题解思路 2020-01-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash