博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【LR9】【LOJ561】CommonAnts 的调和数 数论 筛法
阅读量:5037 次
发布时间:2019-06-12

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

题目大意

  有一个长度为 \(n\) 的序列。

  有 \(m\) 次修改,每次给你 \(x,y\),令 \(\forall 1\leq i\leq \lfloor\frac{n}{x}\rfloor,a_{ix}=a_{ix}+iy\)

  还有 \(q\) 次询问,每次给你 \(x\),求 \(\sum_{i=1}^{\lfloor\frac{n}{x}\rfloor}ia_{ix}\)

  对 \(998244353\) 取模。

  \(n\leq {10}^9,m,q\leq 200000\),记 \(z\) 为所有 \(x\)\(\operatorname{lcm}\),那么 \(z\) 的质因子个数 \(w\) 不超过 \(10\)

题解

  首先你要会 \(O(n\log\log n)\) 求高维前缀和&后缀和,这样就可以拿到 \(65\) 分。

  容易发现,所有 \(z\) 的不超过 \(n\) 的因子个数 \(s\leq 200000\)

  因为所有修改&询问的数都是 \(z\) 的因子,所以可以把那些不是 \(z\) 的因子的位置的贡献放在那个数和 \(z\)\(\gcd\) 处统计。

  具体来说,我们在求高维前缀和的时候只求 \(z\) 的不超过 \(n\) 的因子的答案,求完之后把每个位置 \(x\) 的值乘上一个系数 \(f(\frac{n}{x})\)

\[ f(n)=\sum_{i=1}^ni^2[\gcd(i,z)=1] \]
  \(f\) 可以筛出来。

  高维后缀和也可以用类似的方法做。

  然后就能得到答案了。

  时间复杂度:\(O(w(s+\sqrt{n}))\)

代码

#include
#include
#include
#include
#include
#include
#include
#include
#include
//using namespace std;typedef long long ll;typedef unsigned long long ull;typedef std::pair
pii;typedef std::pair
pll;void open(const char *s){#ifndef ONLINE_JUDGE char str[100];sprintf(str,"%s.in",s);freopen(str,"r",stdin);sprintf(str,"%s.out",s);freopen(str,"w",stdout);#endif}int rd(){int s=0,c,b=0;while(((c=getchar())<'0'||c>'9')&&c!='-');if(c=='-'){c=getchar();b=1;}do{s=s*10+c-'0';}while((c=getchar())>='0'&&c<='9');return b?-s:s;}void put(int x){if(!x){putchar('0');return;}static int c[20];int t=0;while(x){c[++t]=x%10;x/=10;}while(t)putchar(c[t--]+'0');}int upmin(int &a,int b){if(b
a){a=b;return 1;}return 0;}const ll p=998244353;ll fp(ll a,ll b){ ll s=1; for(;b;b>>=1,a=a*a%p) if(b&1) s=s*a%p; return s;}const ll inv6=fp(6,p-2);std::tr1::unordered_map
s;//int s[10000010];int c[100010];int cnt;int a[200010];int tot;int ax[200010],ay[200010],bx[200010];int n,m,q;void dfs(int x,int y,int b){ if(b) a[++tot]=x; if((ll)x*c[y]<=n) dfs(x*c[y],y,1); if(y
=1;j--) f1[j]=(f1[j]-x*f1[j/c[i]])%p; }}ll query(int x){ return x<=100000?f1[x]:f2[n/x];}int main(){ open("loj561"); scanf("%d%d%d",&n,&m,&q); for(int i=1;i<=m;i++) { scanf("%d%d",&ax[i],&ay[i]); s[ax[i]]=(s[ax[i]]+ay[i])%p; int x=ax[i]; for(int j=1;j<=cnt;j++) while(x%c[j]==0) x/=c[j]; for(int j=2;j*j<=x;j++) if(x%j==0) { c[++cnt]=j; while(x%j==0) x/=j; } if(x!=1) c[++cnt]=x; } for(int i=1;i<=q;i++) { scanf("%d",&bx[i]); int x=bx[i]; for(int j=1;j<=cnt;j++) while(x%c[j]==0) x/=c[j]; for(int j=2;j*j<=x;j++) if(x%j==0) { c[++cnt]=j; while(x%j==0) x/=j; } if(x!=1) c[++cnt]=x; } std::sort(c+1,c+cnt+1); dfs(1,1,1); std::sort(a+1,a+tot+1); sieve(); for(int i=1;i<=cnt;i++) for(int j=1;j<=tot;j++) if(a[j]%c[i]==0) s[a[j]]=(s[a[j]]+(ll)s[a[j]/c[i]]*c[i])%p; for(int i=1;i<=tot;i++) s[a[i]]=s[a[i]]*query(n/a[i])%p; for(int i=1;i<=cnt;i++) for(int j=tot;j>=1;j--) if(a[j]%c[i]==0) s[a[j]/c[i]]=(s[a[j]/c[i]]+(ll)s[a[j]]*c[i])%p; for(int i=1;i<=q;i++) printf("%lld\n",(s[bx[i]]+p)%p); return 0;}

转载于:https://www.cnblogs.com/ywwyww/p/9194413.html

你可能感兴趣的文章
设计模式——原型模式
查看>>
【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.1.CSS框架和其他功能
查看>>
如何一个pdf文件拆分为若干个pdf文件
查看>>
web.xml中listener、 filter、servlet 加载顺序及其详解
查看>>
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>
python中数据的变量和字符串的常用使用方法
查看>>
等价类划分进阶篇
查看>>
delphi.指针.PChar
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
java 字符串转json,json转对象等等...
查看>>
极客前端部分题目收集【索引】
查看>>
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>
android调试debug快捷键
查看>>
【读书笔记】《HTTP权威指南》:Web Hosting
查看>>
Inoodb 存储引擎
查看>>
数据结构之查找算法总结笔记
查看>>