AC通道

要点

  • 欧拉函数对于素数有一些性质,考虑将输入数据唯一分解后进行素数下的处理。
  • 对于素数\(p\)有:\(\phi(p^k)=p^{k-1}*(p-1)=p^k*\frac{p-1}{p}\),因此将\(a_i\)唯一分解后有:\(\phi(\prod_{i=l}^ra_i)=\prod_{i=l}^ra_i*\prod_{p\ \in P}\frac{p-1}{p}\),其中\(P\)是\([l,r]\)内的\(a_i\)分解后的素数集合。
  • 这样转化公式以后,就只需线段树维护一下区间乘积和区间是否有某素数即可,第二个维护可以使用bitset二进制串代表有没有。
  • \(a_i\)和\(x\)都很小,可以预处理1~300范围内的所需数据。
const int maxn = 4e5 + 5, mod = 1e9 + 7;
int n, q;
bst Mask[305];//bitset
vector<int> primes, invp; int ksm(int a, int b) {
int res = 1;
for (; b; b >>= 1) {
if (b & 1) res = (ll)res * a % mod;
a = (ll)a * a % mod;
}
return res;
} void pre(int n) {
bool vis[305] = {false};
for (int i = 2; i <= n; i++) {
if (!vis[i]) {
primes.push_back(i);
invp.push_back(ksm(i, mod - 2));
for (int j = i * i; j <= n; j += i) {
vis[j] = true;
}
}
}
for (int i = 1; i <= n; i++) {
for (int j = 0; j < primes.size(); j++) {
if (i % primes[j] == 0) {
Mask[i][j] = 1;
}
}
}
} class SegmentTree {
public:
#define ls(p) p << 1
#define rs(p) p << 1 | 1 struct Node {
int l, r, mul, tag;
bst bits, laz;
}t[maxn * 3]; void Push_up(int p) {
t[p].mul = (ll)t[ls(p)].mul * t[rs(p)].mul % mod;
t[p].bits = t[ls(p)].bits | t[rs(p)].bits;
t[p].tag = 1;
t[p].laz.reset();
} void Deal(int son, int fa) {
t[son].mul = (ll)t[son].mul * ksm(t[fa].tag, t[son].r - t[son].l + 1) % mod;
t[son].bits |= t[fa].laz;
t[son].tag = (ll)t[son].tag * t[fa].tag % mod;
t[son].laz |= t[fa].laz;
} void Push_down(int p) {
if (t[p].tag != 1 || t[p].laz.any()) {
Deal(ls(p), p), Deal(rs(p), p);
t[p].tag = 1, t[p].laz.reset();
}
} void Build(int l, int r, int p) {
t[p].l = l, t[p].r = r;
if (l == r) {
cin >> t[p].mul;
t[p].tag = 1;
t[p].bits = Mask[t[p].mul];
t[p].laz.reset();
return;
}
int mid = (l + r) >> 1;
Build(l, mid, ls(p));
Build(mid + 1, r, rs(p));
Push_up(p);
} void Modify(int l, int r, int p, int x) {
if (l <= t[p].l && t[p].r <= r) {
t[p].mul = (ll)t[p].mul * ksm(x, t[p].r - t[p].l + 1) % mod;
t[p].tag = (ll)t[p].tag * x % mod;
t[p].bits |= Mask[x];
t[p].laz |= Mask[x];
return;
}
Push_down(p);
int mid = (t[p].l + t[p].r) >> 1;
if (l <= mid) Modify(l, r, ls(p), x);
if (mid < r) Modify(l, r, rs(p), x);
Push_up(p);
} friend Node operator + (const Node &A, const Node &B) {
Node tmp;
tmp.mul = (ll)A.mul * B.mul % mod;
tmp.bits = A.bits | B.bits;
return tmp;
} Node Query(int l, int r, int p) {
if (l <= t[p].l && t[p].r <= r)
return t[p];
Push_down(p);
int mid = (t[p].l + t[p].r) >> 1;
if (mid >= r) return Query(l, r, ls(p));
if (l > mid) return Query(l, r, rs(p));
return Query(l, r, ls(p)) + Query(l, r, rs(p));
}
}T; int main() {
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); pre(300);
cin >> n >> q;
T.Build(1, n, 1);
while (q--) {
string s;
int l, r, x;
cin >> s >> l >> r; if (s == "MULTIPLY") {
cin >> x;
T.Modify(l, r, 1, x);
} else {
auto res = T.Query(l, r, 1);
int ans = res.mul;
for (int j = 0; j < primes.size(); j++) {
if (res.bits[j]) {
ans = (ll)ans * (primes[j] - 1) % mod * invp[j] % mod;
}
}
cout << ans << '\n';
}
}
return 0;
}

Codeforces 1114F(欧拉函数、线段树)的更多相关文章

  1. LightOJ 1370 Bi-shoe and Phi-shoe 欧拉函数+线段树

    分析:对于每个数,找到欧拉函数值大于它的,且标号最小的,预处理欧拉函数,然后按值建线段树就可以了 #include <iostream> #include <stdio.h> ...

  2. loj1370(欧拉函数+线段树)

    传送门:Bi-shoe and Phi-shoe 题意:给出多个n(1<=n<=1e6),求满足phi(x)>=n的最小的x之和. 分析:先预处理出1~1e6的欧拉函数,然后建立一颗 ...

  3. [BZOJ4026]dC Loves Number Theory 欧拉函数+线段树

    链接 题意:给定长度为 \(n\) 的序列 A,每次求区间 \([l,r]\) 的乘积的欧拉函数 题解 考虑离线怎么搞,将询问按右端点排序,然后按顺序扫这个序列 对于每个 \(A_i\) ,枚举它的质 ...

  4. LOJ #2142. 「SHOI2017」相逢是问候(欧拉函数 + 线段树)

    题意 给出一个长度为 \(n\) 的序列 \(\{a_i\}\) 以及一个数 \(p\) ,现在有 \(m\) 次操作,每次操作将 \([l, r]\) 区间内的 \(a_i\) 变成 \(c^{a_ ...

  5. bzoj4869: [Shoi2017]相逢是问候(欧拉函数+线段树)

    这题是六省联考的...据说数据还出了点锅,心疼六省选手QAQ 首先要知道扩展欧拉定理... 可以发现每次区间操作都会使模数进行一次phi操作,而一个数最多取logp次phi就会变成1,这时后面的指数就 ...

  6. [LNOI] 相逢是问候 || 扩展欧拉函数+线段树

    原题为2017六省联考的D1T3 给出一个序列,m次操作,模数p和参数c 操作分为两种: 1.将[l,r]区间内的每个数x变为\(c^x\) 2.求[l,r]区间内数的和%p 首先,我们要了解一些数论 ...

  7. BZOJ 4034 树上操作(树的欧拉序列+线段树)

    刷个清新的数据结构题爽一爽? 题意: 有一棵点数为 N 的树,以点 1 为根,且树点有边权.然后有 M 个 操作,分为三种: 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x ...

  8. BZOJ 4034 [HAOI2015]树上操作(欧拉序+线段树)

    题意: 有一棵点数为 N 的树,以点 1 为根,且树点有边权.然后有 M 个 操作,分为三种: 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x 为根的子树中所有点的点权都增 ...

  9. BZOJ 4034: [HAOI2015]树上操作 [欧拉序列 线段树]

    题意: 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x 为根的子树中所有点的点权都增加 a . 操作 3 :询问某个节点 x 到根的路径中所有点的点权和. 显然树链剖分可做 ...

随机推荐

  1. matlab之text()函数

    text()函数用来给图加上说明性文字. 格式:text(x,y,'txt') 或者:text(x,y,'txt','color','k') x,y是位置 txt是说明文字,如果说明性文字是数字,则这 ...

  2. BZOJ 1208 [HNOI2004]宠物收养所:Splay(伸展树)

    题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1208 题意: 有一个宠物收养所,在接下来一段时间内会陆续有一些宠物进到店里,或是一些人来领 ...

  3. input标签添加上disable属性在移动端字体颜色不兼容的解决办法。

    input[disabled],input:disabled,input.disabled{ color: #999; -webkit-text-fill-color:#999; -webkit-op ...

  4. 线程池ThreadPool的常用方法介绍

    线程池ThreadPool的常用方法介绍 如果您理解了线程池目的及优点后,让我们温故下线程池的常用的几个方法: 1. public static Boolean QueueUserWorkItem(W ...

  5. 前端多媒体(4)—— video标签全面分析

    测试地址:https://young-cowboy.github.io/gallery/html5_video/index.html 属性 一些属性是只读的,一些属性是可以修改从而影响视频播放的. a ...

  6. HihoCoder1652 : 三角形面积和2([Offer收割]编程练习赛38)(几何)(不会几何,占位)

    描述 如下图所示,在X轴上方一共有N个三角形.这些三角形的底边与X轴重合,底边上两个顶点的坐标分别是(Li, 0)和(Ri, 0),底边的对顶点坐标是(Xi, Yi).其中Li ≤ Xi ≤ Ri 且 ...

  7. HDU5875Function(单调队列)

    The shorter, the simpler. With this problem, you should be convinced of this truth.      You are giv ...

  8. C++常见错误总结

    1.  error C2871: 'std' : does not exist or is not a namespace 原来 C++有两个不同版本的头文件.引入名字空间这个概念以前编译器用的是#i ...

  9. [poj3107/poj2378]Godfather/Tree Cutting树形dp

    题意:求树的重心(删除该点后子树最大的最小) 解题关键:想树的结构,删去某个点后只剩下它的子树和原树-此树所形成的数,然后第一次dp求每个子树的节点个数,第二次dp求解答案即可. 此题一开始一直T,后 ...

  10. Java正则表达式之Matcher介绍

    Matcher方法如下: Matcher方法如下: Matcher appendReplacement(StringBuffer sb, String replacement) 将当前匹配子串替换为指 ...