Portal

Description

给出一个\(n(n\leq10^5)\)个点的带点权树,以\(1\)为根;以及正整数\(m(m\leq10^3)\)。进行\(q(q\leq10^5)\)次操作:

  • 给\(v\)的子树中的所有点的点权加\(x\)。
  • 询问有多少个不同的质数\(p\),在\(v\)的子树中存在一个点的点权\(\bmod m=p\)。

Solution

线段树+bitset

做出这棵树的DFS序,那么原操作就相当于序列的区间加和区间查询,用线段树实现。线段树上每个节点维护一个bitset\(info\),其中\(info[x]=1\)表示在这个区间内存在点权\(\bmod m=x\)的点。那么合并就只要按位或。

考虑如何给区间加\(x\):\(info[(i+x)\bmod m]=info[i]\),那么对于\(i<m-x\)只要左移\(x\)位,对于\(i>=m-x\)相当于移动到\(i+x-m\)位,也就是右移\(m-x\)位。info=(info<<x)|(info>>m-x),前面溢出的由于用不到所以可以不管(不过我因为这个WA了QAQ)。

询问时,将\(O(logn)\)个节点的\(info\)或起来,然后检查有多少个小于\(m\)的质数出现了。

时间复杂度\(O(qlogn)\)。

Code

//Yash And Trees
#include <bitset>
#include <cstdio>
#include <iostream>
#include <vector>
using namespace std;
typedef bitset<1010> bits;
inline char gc()
{
static char now[1<<16],*s,*t;
if(s==t) {t=(s=now)+fread(now,1,1<<16,stdin); if(s==t) return EOF;}
return *s++;
}
inline int read()
{
int x=0; char ch=gc();
while(ch<'0'||'9'<ch) ch=gc();
while('0'<=ch&&ch<='9') x=x*10+ch-'0',ch=gc();
return x;
}
int pr[200]={0,2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997};
const int N=1e5+10;
int n,m,a[N];
vector<int> son[N];
void edAdd(int u,int v) {son[u].push_back(v),son[v].push_back(u);}
int dfCnt,dfn[N],fr[N],to[N];
void dfs(int u,int fa)
{
dfn[++dfCnt]=u; fr[u]=dfCnt;
for(int i=0;i<son[u].size();i++)
{
int v=son[u][i];
if(v!=fa) dfs(v,u);
}
to[u]=dfCnt;
}
int sgCnt,rt,ch[N<<1][2]; bits info[N<<1]; int tag[N<<1];
void update(int p) {info[p]=info[ch[p][0]]|info[ch[p][1]];}
void change(int p,int x) {info[p]=(info[p]<<x)|(info[p]>>m-x); tag[p]=(tag[p]+x)%m;}
void pushdw(int p) {if(tag[p]) change(ch[p][0],tag[p]),change(ch[p][1],tag[p]),tag[p]=0;}
void bldTr(int &p,int L0,int R0)
{
if(!p) p=++sgCnt;
if(L0==R0) {info[p][a[dfn[L0]]]=1; return;}
int mid=L0+R0>>1;
bldTr(ch[p][0],L0,mid);
bldTr(ch[p][1],mid+1,R0);
update(p);
}
int optL,optR;
void ins(int p,int L0,int R0,int x)
{
if(optL<=L0&&R0<=optR) {change(p,x); return;}
pushdw(p);
int mid=L0+R0>>1;
if(optL<=mid) ins(ch[p][0],L0,mid,x);
if(mid<optR) ins(ch[p][1],mid+1,R0,x);
update(p);
}
bits resQ;
void query(int p,int L0,int R0)
{
if(optL<=L0&&R0<=optR) {resQ|=info[p]; return;}
pushdw(p);
int mid=L0+R0>>1;
if(optL<=mid) query(ch[p][0],L0,mid);
if(mid<optR) query(ch[p][1],mid+1,R0);
}
int main()
{
n=read(),m=read();
for(int i=1;i<=n;i++) a[i]=read()%m;
for(int i=1;i<=n-1;i++) edAdd(read(),read());
dfs(1,0); bldTr(rt,1,n);
int Q=read();
while(Q--)
{
int opt=read(),v=read(); optL=fr[v],optR=to[v];
if(opt==1) ins(rt,1,n,read()%m);
else
{
resQ=0,query(rt,1,n); int ans=0;
for(int i=1;i<=168&&pr[i]<m;i++) if(resQ[pr[i]]) ans++; //要同时判断pr[i]<m!
printf("%d\n",ans);
}
}
return 0;
}

P.S.

因为懒得写线性筛所以打表了\(1000\)以内的质数,但是由于没有处理溢出也没有判断质数是否小于\(m\)所以WA掉了...感谢elijahqi大佬

Codeforces633G - Yash And Trees的更多相关文章

  1. codeforces 633G. Yash And Trees dfs序+线段树+bitset

    题目链接 G. Yash And Trees time limit per test 4 seconds memory limit per test 512 megabytes input stand ...

  2. Manthan, Codefest 16 G. Yash And Trees dfs序+线段树+bitset

    G. Yash And Trees 题目连接: http://www.codeforces.com/contest/633/problem/G Description Yash loves playi ...

  3. CF Manthan, Codefest 16 G. Yash And Trees 线段树+bitset

    题目链接:http://codeforces.com/problemset/problem/633/G 大意是一棵树两种操作,第一种是某一节点子树所有值+v,第二种问子树中节点模m出现了多少种m以内的 ...

  4. G. Yash And Trees 线段树 + dfs序 + bitset

    这个是要用bitset 一个大整数的二进制 学习推荐博客 这个题目大意就是:给你n,m 还有一个序列,还有一个一棵树,有一种操作一种询问 操作是给你一个节点 把这个节点及其子节点都加上x 询问是 给你 ...

  5. Codeforces633G(SummerTrainingDay06-I dfs序+线段树+bitset)

    G. Yash And Trees time limit per test:4 seconds memory limit per test:512 megabytes input:standard i ...

  6. Manthan, Codefest 16

    暴力 A - Ebony and Ivory import java.util.*; import java.io.*; public class Main { public static void ...

  7. Z - New Year Tree CodeForces - 620E 线段树 区间种类 bitset

    Z - New Year Tree CodeForces - 620E 这个题目还没有写,先想想思路,我觉得这个题目应该可以用bitset, 首先这个肯定是用dfs序把这个树转化成线段树,也就是二叉树 ...

  8. [C#] C# 知识回顾 - 表达式树 Expression Trees

    C# 知识回顾 - 表达式树 Expression Trees 目录 简介 Lambda 表达式创建表达式树 API 创建表达式树 解析表达式树 表达式树的永久性 编译表达式树 执行表达式树 修改表达 ...

  9. hdu2848 Visible Trees (容斥原理)

    题意: 给n*m个点(1 ≤ m, n ≤ 1e5),左下角的点为(1,1),右上角的点(n,m),一个人站在(0,0)看这些点.在一条直线上,只能看到最前面的一个点,后面的被档住看不到,求这个人能看 ...

随机推荐

  1. uvm_sequence_item——sequence机制(一)

    让子弹飞一会 UVM框架,将验证平台和激励分开,env以下属于平台部分,test和sequence属于激励,这样各司其职.我们可以将sequence_item 比喻成子弹,sequencer 类比成弹 ...

  2. Android学习总结(十一)———— Adapter的使用

    一.Adapter的基本概念 UI控件都是跟Adapter(适配器)打交道的,了解并学会使用这个Adapter很重要, Adapter是用来帮助填充数据的中间桥梁,简单点说就是:将各种数据以合适的形式 ...

  3. perl在linux下通过date获取当前时间

    perl处理文件的时候最好添加上 处理的时间戳,获取系统的时间又多种方法,但是反引号是最原始的,不需要其他外界条件和lib的支持. my $now = `date "+%F %T" ...

  4. FZU 1977 Pandora adventure (插头DP,常规)

    题意:有一个n*m矩阵,其中有些格子必走,有些格子不可走,其他格子是可走也可不走,问有多少条哈密顿回路? 思路: 本来是一道很简单的题,代码写多了连白痴bug都查不出了,竟然用i>=ex& ...

  5. Educational Codeforces Round 11 _D

    http://codeforces.com/contest/660/problem/D 这个题据说是很老的题了 然而我现在才知道做法 用map跑了1953ms: 题目大意 给你n个点的坐标 求这些点能 ...

  6. APPScan-简单操作流程

    图解安全扫描工具 AppScan使用   IBM Rational AppScan 是一个面向 Web 应用安全检测的自动化工具,使用它可以自动化检测 Web 应用的安全漏洞. 比如跨站点脚本攻击(C ...

  7. WPF显示尺寸与设备无关问题

    WPF单位 WPF窗口以及其中的所有元素都是用与设备无关的单位进行度量.一个与设备无关的单位被定义为1/96英寸.WPF程序统一用下面一个公式来定义物理单位尺寸: [ 物理单位尺寸(像素)] = [ ...

  8. Java中的线程--Lock和Condition实现线程同步通信

    随着学习的深入,我接触了更多之前没有接触到的知识,对线程间的同步通信有了更多的认识,之前已经学习过synchronized 实现线程间同步通信,今天来学习更多的--Lock,GO!!! 一.初时Loc ...

  9. C语言特点_01

    C语言特点: 1.C语言的32个关键字 auto 局部变量(自动储存) break 无条件退出程序最内层循环 case switch语句中选择项 char 单字节整型数据 const 定义不可更改的常 ...

  10. C++笔记(仅C++特性,需C语言基础)

    C++复习笔记一(类的声明定义应用与构造函数析构函数部分)const在C语言中是"不能被改变值的变量",而在C++种子则是"一种有类型描述的常量",常量必须初始 ...