博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2018 Multi-University Training Contest 10 - Count
阅读量:4950 次
发布时间:2019-06-11

本文共 1948 字,大约阅读时间需要 6 分钟。

数论,gcd

gcd(i+j, i-j) = gcd(2*i, i+j)

把i+j看出一个整体,得到范围为[i+1...2*i-1]

再看phi[2i]的意义,即[1...2i-1]上与2*i互质的数的个数

i+j的范围刚好是其一半,又引理可知欧拉函数在这个范围内均分成两半。

所以当i为奇数时,2和i互质,根据积性函数的性质,phi[2i] = phi[2] phi[i] = phi[i]

当i为偶数时,由欧拉函数的性质,phi[2i] = 2phi[i]

#include 
#define INF 0x3f3f3f3f#define full(a, b) memset(a, b, sizeof a)#define FAST_IO ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)using namespace std;typedef long long ll;inline int lowbit(int x){ return x & (-x); }inline int read(){ int ret = 0, w = 0; char ch = 0; while(!isdigit(ch)) { w |= ch == '-'; ch = getchar(); } while(isdigit(ch)) ret = (ret << 3) + (ret << 1) + (ch ^ 48), ch = getchar(); return w ? -ret : ret;}inline int gcd(int a, int b){ return b ? gcd(b, a % b) : a; }inline int lcm(int a, int b){ return a / gcd(a, b) * b; }template
inline T max(T x, T y, T z){ return max(max(x, y), z); }template
inline T min(T x, T y, T z){ return min(min(x, y), z); }template
inline A fpow(A x, B p, C lyd){ A ans = 1; for(; p; p >>= 1, x = 1LL * x * x % lyd)if(p & 1)ans = 1LL * x * ans % lyd; return ans;}const int N = 20000005;int _, n, tot, phi[N], prime[N];ll a[N];bool vis[N];void calc(){ phi[1] = 1; for(int i = 2; i < N; i ++){ if(!vis[i]){ prime[++tot] = i; phi[i] = i - 1; } for(int j = 1; j <= tot && i * prime[j] < N; j ++){ vis[i * prime[j]] = true; if(i % prime[j] == 0){ phi[i * prime[j]] = phi[i] * prime[j]; break; } phi[i * prime[j]] = phi[i] * (prime[j] - 1); } } for(int i = 1; i < N; i ++){ if(i & 1) a[i] = a[i - 1] + phi[i] / 2; else a[i] = a[i - 1] + phi[i]; }}int main(){ calc(); for(_ = read(); _; _ --){ n = read(); printf("%lld\n", a[n]); } return 0;}

转载于:https://www.cnblogs.com/onionQAQ/p/11172330.html

你可能感兴趣的文章
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
struct {0}初始化
查看>>
c++ operator
查看>>
apache 添加 ssl_module
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
getQueryString
查看>>
Servlet文件上传和下载的复习
查看>>
JavaScript笔记——正则表达式
查看>>
iOS PushMebaby
查看>>
网页消息类
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
日常一些出现bug的问题
查看>>
同时启动多个tomcat服务器
查看>>
怎么将iphone上的照片导出到本地文件
查看>>
Repeater+DataPagerSource分页
查看>>
模块化导出
查看>>
pagebean pagetag java 后台代码实现分页 demo 前台标签分页 后台java分页
查看>>
Sphinx 2.0.8 发布,全文搜索引擎 Installing Sphinx on Windows
查看>>