杜教筛模板

#define _CRT_SECURE_NO_WARNINGS

#include<iostream>

#include<string>

#include<cstring>

#include<cmath>

#include<ctime>

#include<algorithm>

#include<utility>

#include<stack>

#include<queue>

#include<vector>

#include<set>

#include<map>

#include<unordered_map>

using namespace std;

#define LL long long

const int N = 2e6 + 10;

const long long mod = 998244353;

const double PI = acos(-1);

LL su[N], a[N], mu[N], phi[N], cn;

LL n;

map<LL, LL> mpu, mpp;

void init()

{

a[0] = a[1] = mu[1] = phi[1] = 1;

for (int i = 2; i < N; i++)

{

if (!a[i]) su[++cn] = i, mu[i] = -1, phi[i] = i - 1;

for (int j = 1; j <= cn&&(LL)i*su[j]<N; j++)

{

int pm = su[j];

a[pm * i] = 1;

if (i % pm == 0)

{

phi[i * pm] = phi[i] * pm;

break;

}

mu[i * pm] = -1 * mu[i];

phi[i * pm] = phi[i] * (pm - 1);

}

}

for (int i = 1; i < N; i++)

mu[i] += mu[i - 1], phi[i] += phi[i - 1];

}

LL seekphi(LL n)

{

if (n < N) return phi[n];

if (mpp[n]) return mpp[n];

LL ans = n * (n + 1) / 2;

for (LL l = 2, r; l <= n; l = r + 1)

{

if (n / l == 0) r = n;

else

r = min(n / (n / l),n);

ans -= (r - l + 1) * seekphi(n / l);

}

mpp[n] = ans;

return ans;

}

LL seekmu(LL n)

{

if (n < N) return mu[n];

if (mpu[n]) return mpu[n];

LL ans = 1;

for (LL l = 2, r; l <= n; l = r + 1)

{

if (n / l == 0) r = n;

else

r = min(n / (n / l), n);

ans -= (r - l + 1) * seekmu(n / l);

}

mpu[n] = ans;

return ans;

}

int main() {

init();

int T;

cin >> T;

while (T--)

{

cin >> n;

LL ans1 =seekphi(n),ans2=seekmu(n);

cout << ans1 <<" "<<ans2<< endl;

}

return 0;

}

相关推荐
AI街潜水的八角3 分钟前
基于C++的决策树C4.5机器学习算法(不调包)
c++·算法·决策树·机器学习
白榆maple28 分钟前
(蓝桥杯C/C++)——基础算法(下)
算法
JSU_曾是此间年少32 分钟前
数据结构——线性表与链表
数据结构·c++·算法
此生只爱蛋1 小时前
【手撕排序2】快速排序
c语言·c++·算法·排序算法
何曾参静谧2 小时前
「C/C++」C/C++ 指针篇 之 指针运算
c语言·开发语言·c++
咕咕吖2 小时前
对称二叉树(力扣101)
算法·leetcode·职场和发展
九圣残炎2 小时前
【从零开始的LeetCode-算法】1456. 定长子串中元音的最大数目
java·算法·leetcode
lulu_gh_yu3 小时前
数据结构之排序补充
c语言·开发语言·数据结构·c++·学习·算法·排序算法
丫头,冲鸭!!!3 小时前
B树(B-Tree)和B+树(B+ Tree)
笔记·算法
Re.不晚3 小时前
Java入门15——抽象类
java·开发语言·学习·算法·intellij-idea