totaled
totaled
全部文章
分类
atcoder(1)
codeforces(6)
leetcode(17)
Linux(5)
操作系统(2)
数据结构(7)
未归档(1)
算法(23)
网络编程(1)
计算机网络(5)
题解(84)
归档
标签
去牛客网
登录
/
注册
qin_peng
O_O
TA的专栏
10篇文章
0人订阅
Hello Code
10篇文章
8715人学习
全部文章
(共3篇)
HDU-5780 gcd(欧拉函数)
HDU-5780 gcd #include<bits/stdc++.h> #define me(a,x) memset(a,x,sizeof(a)) #define IN freopen("in.txt","r",stdin); #define OUT freopen("ou...
欧拉函数
欧拉反演
2019-09-18
0
722
51Nod-1238 最小公倍数和V3(杜教筛)
51Nod-1238 最小公倍数和V3 #include<bits/stdc++.h> using namespace std; #define me(a,x) memset(a,x,sizeof(a)) #define IN freopen("in.txt","r",stdin...
莫比乌斯反演
欧拉函数
积性函数
欧拉反演
杜教筛
2019-08-27
0
646
51Nod-1237 最大公约数之和V3(欧拉反演 杜教筛)
51Nod-1237 最大公约数之和 V3 #include<bits/stdc++.h> using namespace std; const int N=1e7+6; const int mod=1e9+7; const int inv2=mod+1>>1; ...
欧拉反演
杜教筛
2019-08-26
0
632