摘要:
POJ - 2478 欧拉函数求前缀和 把分数按照分母分类,每一类的个数为$\phi(分母)$ $\frac{1}{1}$特判掉 #include<iostream> #include<cstdio> #include<cstring> using namespace std; const int 阅读全文
摘要:
Gym - 101727D 求欧拉函数$\phi(i)$,$i=1$时特判为$2$ #include<iostream> #include<cstdio> using namespace std; long long getphi(long long x){ long long ret=1; for 阅读全文
摘要:
题目链接 裸的高斯消元求异或方程组 但是怎么考虑最少需要几条信息呢? 考虑我们寻找某列为1的行的过程,实际上就是在找最早出现的那条信息 所以只要找到后break就可以了 #include<bits/stdc++.h> using namespace std; const int N = 1050; 阅读全文