线段树|POJ训练计划2777_Count Color(线段树/成段更新/区间染色)
【线段树|POJ训练计划2777_Count Color(线段树/成段更新/区间染色)】解题报告
题意:
对线段染色,询问线段区间的颜色种数。
思路:
本来直接在线段树上染色,lz标记颜色。每次查询的话访问线段树,求出颜色种数。结果超时了,最坏的情况下,染色可以染到叶子节点。
换成存下区间的颜色种数,这样每次查询就不用找到叶子节点了,用按位或来处理颜色种数。
#include
#include
#include
#include
using namespace std;
int sum[500000],lz[500000],ans;
void push_down(int rt,int l,int r)
{
if(lz[rt])
{
lz[rt<<1]=lz[rt<<1|1]=lz[rt];
sum[rt<<1]=lz[rt];
sum[rt<<1|1]=lz[rt];
lz[rt]=0;
}
}
void push_up(int rt,int l,int r)
{
sum[rt]=sum[rt<<1]|sum[rt<<1|1];
}
void cbtree(int rt,int l,int r)
{
if(l==r)
{
sum[rt]=1;
return ;
}
int mid=(l+r)>>1;
cbtree(rt<<1,l,mid);
cbtree(rt<<1|1,mid+1,r);
push_up(rt,l,r);
}
void update(int rt,int l,int r,int ql,int qr,int v)
{
if(ql>r||qr>1;
push_down(rt,l,r);
update(rt<<1,l,mid,ql,qr,v);
update(rt<<1|1,mid+1,r,ql,qr,v);
push_up(rt,l,r);
}
int _q(int rt,int l,int r,int ql,int qr)
{
if(ql>r||qr>1;
return _q(rt<<1,l,mid,ql,qr) | _q(rt<<1|1,mid+1,r,ql,qr);
}
int main()
{
int n,t,q,ql,qr,i,j,a,k;
char str[10];
scanf("%d%d%d",&n,&t,&q);
cbtree(1,1,n);
while(q--)
{
scanf("%s",str);
if(str[0]=='C')
{
scanf("%d%d%d",&ql,&qr,&a);
if(ql>qr)swap(ql,qr);
update(1,1,n,ql,qr,1<<(a-1));
}
else
{
scanf("%d%d",&ql,&qr);
if(ql>qr)swap(ql,qr);
ans=_q(1,1,n,ql,qr);
int cnt=0;
while(ans)
{
if(ans%2)
cnt++;
ans/=2;
}
printf("%d\n",cnt);
}
}
return 0;
}
Count Color
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 35143 | Accepted: 10591 |
Chosen Problem Solving and Program design as an optional course, you are required to solve all kinds of problems. Here, we get a new problem.
There is a very long board with length L centimeter, L is a positive integer, so we can evenly divide the board into L segments, and they are labeled by 1, 2, ... L from left to right, each is 1 centimeter long. Now we have to color the board - one segment with only one color. We can do following two operations on the board:
1. "C A B C" Color the board from segment A to segment B with color C.
2. "P A B" Output the number of different colors painted between segment A and segment B (including).
In our daily life, we have very few words to describe a color (red, green, blue, yellow…), so you may assume that the total number of different colors T is very small. To make it simple, we express the names of colors as color 1, color 2, ... color T. At the beginning, the board was painted in color 1. Now the rest of problem is left to your.
Input
First line of input contains L (1 <= L <= 100000), T (1 <= T <= 30) and O (1 <= O <= 100000). Here O denotes the number of operations. Following O lines, each contains "C A B C" or "P A B" (here A, B, C are integers, and A may be larger than B) as an operation defined previously. Output
Ouput results of the output operation in order, each line contains a number. Sample Input
2 2 4 C 1 1 2 P 1 2 C 2 2 2 P 1 2
Sample Output
2 1
推荐阅读
- 【生信技能树】R语言练习题|【生信技能树】R语言练习题 - 中级
- java中如何实现重建二叉树
- 种树郭橐驼传(文言句式+古今异义+词类活用+通假字)
- 白杨树
- 08黑龙江迟淑荣弯柳树网络学院第五期学习赵宗瑞老师主讲的(传统文化与身心健康)教育体系心得体会
- [原创]能见沂山一棵树,胜读十年无用书!
- 涵养字外功
- 2018.07.07《刺杀骑士团长》村上春树
- 二叉树路径节点关键值和等于目标值(LeetCode--112&LeetCode--113)
- 撒哈拉沙漠-三毛