「bzoj 3944: Sum」
杜教筛板子了
#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<tr1/unordered_map>
#define re register
#define maxn 5000005
#define LL long long
using namespace std::tr1;
unordered_map<int,int> ma;
unordered_map<int,LL> Ma;
#define max(a,b) ((a)>(b)?(a):(b))
#define min(a,b) ((a)<(b)?(a):(b))
inline int read()
{
char c=getchar();
int x=0;
while(c<'0'||c>'9') c=getchar();
while(c>='0'&&c<='9') x=(x<<3)+(x<<1)+c-48,c=getchar();
return x;
}
int f[maxn],p[maxn>>1],mu[maxn];
LL phi[maxn];
int N[101];
int M,T;
int solve(int x)
{
if(x<=M) return mu[x];
if(ma.find(x)!=ma.end()) return ma[x];
int now=1;
for(re int l=2,r;l<=x;l=r+1)
{
r=x/(x/l);
now-=(r-l+1)*solve(x/l);
}
return ma[x]=now;
}
LL work(int x)
{
if(x<=M) return phi[x];
if(Ma.find(x)!=Ma.end()) return Ma[x];
LL ans=(LL)x*(x+1)/2;
for(re int l=2,r;l<=x;l=r+1)
{
r=x/(x/l);
ans-=(LL)(r-l+1)*work(x/l);
}
return Ma[x]=ans;
}
int main()
{
T=read();
for(re int i=1;i<=T;i++) N[i]=read(),M=max(M,N[i]);
M=5000000;
f[1]=mu[1]=phi[1]=1;
for(re int i=2;i<=M;i++)
{
if(!f[i]) p[++p[0]]=i,mu[i]=-1,phi[i]=i-1;
for(re int j=1;j<=p[0]&&p[j]*i<=M;j++)
{
f[p[j]*i]=1;
if(i%p[j]==0)
{
phi[p[j]*i]=p[j]*phi[i];
break;
}
mu[i*p[j]]=-1*mu[i];
phi[i*p[j]]=phi[i]*phi[p[j]];
}
}
for(re int i=1;i<=M;i++) mu[i]+=mu[i-1],phi[i]+=phi[i-1];
for(re int t=1;t<=T;t++) printf("%lld %d\n",work(N[t]),solve(N[t]));
return 0;
}
发现自己杜教筛常数太大了,b站卡不过去
于是怒写Min_25,发现还是卡着过的
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#define maxn 100005
#define re register
#define LL long long
#define max(a,b) ((a)>(b)?(a):(b))
#define min(a,b) ((a)<(b)?(a):(b))
inline int read() {
int x=0;char c=getchar();while(c<'0'||c>'9') c=getchar();
while(c>='0'&&c<='9') x=(x<<3)+(x<<1)+c-48,c=getchar();return x;
}
int T,D,a[12];
LL n,m,w[maxn],id1[maxn],id2[maxn],g[maxn],d[maxn],pre[maxn];
int f[maxn],p[maxn>>1],tot;
inline LL Sphi(LL x,int y) {
if(x<=1||p[y]>x) return 0;
int t=(x<=D)?id1[x]:id2[n/x];
LL ans=d[t]-g[t]-(pre[y-1]-y+1);
for(re int k=y;k<=tot&&p[k]*p[k]<=x;k++) {
LL p1=p[k],now=p[k]-1;
for(re int e=1;p1<=x;e++,p1*=p[k],now*=p[k])
ans+=now*(Sphi(x/p1,k+1)+(e>1));
}
return ans;
}
inline int Smu(LL x,int y) {
if(x<=1||p[y]>x) return 0;
int t=(x<=D)?id1[x]:id2[n/x];
int ans=-1*g[t]+y-1;
for(re int k=y;k<=tot&&p[k]*p[k]<=x;k++) {
ans-=Smu(x/p[k],k+1);
}
return ans;
}
int main() {
T=read();
for(re int i=1;i<=T;i++) a[i]=read(),D=max(D,a[i]);
f[1]=1;D=std::sqrt(D)+1;
for(re int i=2;i<=D;i++) {
if(!f[i]) p[++tot]=i,pre[tot]=pre[tot-1]+i;
for(re int j=1;j<=tot&&p[j]*i<=D;j++) {
f[p[j]*i]=1;if(i%p[j]==0) break;
}
}
for(re int tt=1;tt<=T;tt++) {
n=a[tt];m=0;
if(!n) {puts("0 0");continue;}
for(re LL l=1,r;l<=n;l=r+1) {
r=n/(n/l);w[++m]=n/l;
if(w[m]<=D) id1[w[m]]=m;
else id2[n/w[m]]=m;
g[m]=w[m]-1ll;
d[m]=(w[m]+2ll)*(w[m]-1ll);d[m]/=2ll;
}
for(re int j=1;j<=tot&&p[j]*p[j]<=n;j++)
for(re int i=1;i<=m&&p[j]*p[j]<=w[i];i++) {
int k=(w[i]/p[j]<=D)?id1[w[i]/p[j]]:id2[n/(w[i]/p[j])];
g[i]=g[i]-g[k]+j-1;
d[i]=d[i]-(LL)p[j]*(d[k]-pre[j-1]);
}
printf("%lld %d\n",Sphi(n,1)+1ll,Smu(n,1)+1ll);
}
return 0;
}
「bzoj 3944: Sum」的更多相关文章
- ●杜教筛入门(BZOJ 3944 Sum)
入门杜教筛啦. http://blog.csdn.net/skywalkert/article/details/50500009(好文!) 可以在$O(N^{\frac{2}{3}})或O(N^{\f ...
- BZOJ 3944: Sum [杜教筛]
3944: Sum 贴模板 总结见学习笔记(现在还没写23333) #include <iostream> #include <cstdio> #include <cst ...
- bzoj 3944: Sum(杜教筛)
3944: Sum Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 4930 Solved: 1313[Submit][Status][Discuss ...
- BZOJ 3944 Sum
题目链接:Sum 嗯--不要在意--我发这篇博客只是为了保存一下杜教筛的板子的-- 你说你不会杜教筛?有一篇博客写的很好,看完应该就会了-- 这道题就是杜教筛板子题,也没什么好讲的-- 下面贴代码(不 ...
- BZOJ.3944.Sum(Min_25筛)
BZOJ 洛谷 不得不再次吐槽洛谷数据好水(连\(n=0,2^{31}-1\)都没有). \(Description\) 给定\(n\),分别求\[\sum_{i=1}^n\varphi(i),\qu ...
- bzoj 3944 Sum —— 杜教筛
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=3944 杜教筛入门题! 看博客:https://www.cnblogs.com/zjp-sha ...
- BZOJ 3944 Sum 解题报告
我们考虑令: \[F_n = \sum_{d|n}\varphi(d)\] 那么,有: \[\sum_{i=1}^{n}F_i = \sum_{i=1}^{n}\sum_{d|i}\varphi(d) ...
- 【刷题】BZOJ 3944 Sum
Description Input 一共T+1行 第1行为数据组数T(T<=10) 第2~T+1行每行一个非负整数N,代表一组询问 Output 一共T行,每行两个用空格分隔的数ans1,ans ...
- 「bzoj 4025: 二分图」
题目 显然二分图没有奇环 于是考虑使用并查集维护一下看看是否存在奇环 我们可以考虑加权并查集,维护出\(x\)到\(fa_x\)的实际距离 由于我们只需要考虑奇偶性,于是我们处理出到根的路径异或一下就 ...
随机推荐
- online contest
http://atcoder.jp/contest https://nanti.jisuanke.com/contest http://codeforces.com/ https://www.nowc ...
- C#继承中构造函数,成员变量的执行顺序
public class Animal { static string baseClassName; protected string _skincolor; Instancevariable iv ...
- node版本管理nvm使用
nvm:Node Version Manager,用来管理node版本,可以在一台机器上来回切换node版本,比较方便. win下建议使用 nvm-windows nodist linux下直接使用n ...
- c#单例(Singleton)模式实现
sealed class Singleton { private Singleton(); public static readonly Singleton Instance=new Singleto ...
- css三栏布局方案整理
日常开发中,经常会用到css三栏布局,现将工作中常用的css 三栏布局整理如下: 什么是三栏布局: 三栏布局,顾名思义就是两边固定,中间自适应. 一. float布局 <!DOCTYPE htm ...
- 互联网轻量级框架SSM-查缺补漏第四天
简言:昨天第四章没看完,今天接着记吧. 4.5 typeHandler 类型转换器 顾名思义呀,就是将数据库中数据类型与Java数据类型做相互转换的处理器.在typeHandler中,分为jdbcTy ...
- 十一 Pipe
Java NIO 管道是2个线程之间的单向数据连接.Pipe有一个source通道和一个sink通道.数据会被写到sink通道,从source通道读取. 创建管道 通过Pipe.open()方法打开管 ...
- 前端学习之路之CSS (二)
Infi-chu: http://www.cnblogs.com/Infi-chu/ id选择器id 选择器可以为标有特定 id 的 HTML 元素指定特定的样式,CSS 中 id 选择器以 &quo ...
- mysql的一些sql用法
mysql中修改列名: alter table 表名 change abc def 列类型;比如 alter table student change pws psw char(10);
- 关联函数 map 的基本用法
1.map简介 map是一类关联式容器.它的特点是增加和删除节点对迭代器的影响很小,除了那个操作节点,对其他的节点都没有什么影响.对于迭代器来说,可以修改实值,而不能修改key. 2.map的功能 自 ...