Count Color
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 53639   Accepted: 16153

Description

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 题目链接: http://poj.org/problem?id=2777 题目大意: 给L长度的木板涂色,一开始木板颜色相同,有T种颜色可用,O(不是零是 ou )次操作。每次操作有两种情况,一种是改变木板的颜色也就是给木板的某个区间涂色,另一种是询问给定区间的颜色种类数量。 题目分析: 这题比较明显是使用线段树解决问题,但是有一个问题是:超时。那么如何解决这个问题呢,这时候就引进了一个很优秀的操作————懒标记。 懒标记是什么呢?“懒”的意思很明显了,就是说在不涉及某个节点的情况下,选择性的变懒,不去改变。举个例子: 如果改变区间的颜色,那么我们可以不去找到区间内每个叶子然后改变每个叶子的颜色,而是找到在这个区间内的另外的区间(可能是一个区间,也可能是很多个区间,也有可能包括了一个区间和n个叶子,也有可能只有叶子),把找到的区间改变颜色,并把区间懒标记。 懒标记后,如果再次查询到该节点,那么需要做下推操作,即把该节点的颜色,下推给子节点,改变子节点的颜色,并把该节点懒标记清空。 对于颜色的存储,这题还是需要注意的。我们很容易想到存储每个节点区间的颜色种类数,但是这样存储问题就来了,怎么确定子节点中颜色是否相同? 所以有引进一个操作,二进制表示法。 我们可以看到颜色的种类不超过30种,所以可以用8位二进制表示一种颜色,即颜色一为(1),颜色二为(10),颜色三为(100),颜色四为(1000),依次类推。那么,表示当前节点有颜色一和颜色四就为1001。 那么我们存储父节点颜色怎么存储呢? 或操作(|)。
tree[k].color=tree[k<<].color|tree[k<<|].color;

解释一下:或操作,如果颜色相同,那么结果仍保存该颜色;如果子节点一个有该颜色,另一个没有该颜色,操作结果仍然有该颜色;如果两个子节点都没有该颜色,那么结果也没有该颜色。

最后得到的结果只需要判断在二进制下有几个1就可以了。

还要注意一个坑就是 A和B大小不确定。

AC代码如下:
#include<stdio.h>

const int MAX=1e6+;

struct a{
int left,right;
int lazy,ans;
}tree[MAX<<]; void init(int length) //懒标记初始化
{
for(int i=;i<=length;i++)
{
tree[i].lazy=;
}
} void btree(int k,int l,int r) //建树操作
{
tree[k].left=l;tree[k].right=r;
if(l==r)
{
tree[k].ans=;return ;
}
int mid=(l+r)>>;
btree(k<<,l,mid);
btree(k<<|,mid+,r);
tree[k].ans=(tree[k<<].ans|tree[k<<|].ans);
} void push_down(int k) //下推
{
if(tree[k].left==tree[k].right) return ;
tree[k<<].lazy=tree[k].lazy;
tree[k<<|].lazy=tree[k].lazy;
tree[k<<].ans=<<(tree[k].lazy-);
tree[k<<|].ans=<<(tree[k].lazy-);
tree[k].lazy=;
} void datetree(int k,int l,int r,int co) //涂色
{
if(tree[k].left>=l&&tree[k].right<=r)
{
tree[k].ans=<<(co-);
tree[k].lazy=co;
return ;
}
if(tree[k].lazy) push_down(k);
int mid=(tree[k].left+tree[k].right)>>;
if(mid<l)
{
datetree(k<<|,l,r,co);
}
else if(mid>=r)
{
datetree(k<<,l,r,co);
}
else
{
datetree(k<<,l,r,co);
datetree(k<<|,l,r,co);
}
tree[k].ans=(tree[k<<].ans|tree[k<<|].ans);
} int ans;
void query(int k,int l,int r) //询问
{
if(tree[k].left>=l&&tree[k].right<=r)
{
ans=(ans|tree[k].ans);
return ;
}
if(tree[k].lazy) push_down(k);
int mid=(tree[k].left+tree[k].right)>>;
if(mid<l)
{
query(k<<|,l,r);
}
else if(mid>=r)
{
query(k<<,l,r);
}
else
{
query(k<<,l,r);
query(k<<|,l,r);
}
} int main()
{
int L,color,q;
char n[];
scanf("%d%d%d",&L,&color,&q);
init(L);
btree(,,L);
while(q--)
{
scanf("%s",n);
if(n[]=='C')
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if(a>b){
int t=a;a=b;b=t;
}
datetree(,a,b,c); }
else
{
int a,b;
ans=;
int cnt=;
scanf("%d%d",&a,&b);
if(a>b){
int t=a;a=b;b=t;
}
query(,a,b);
while(ans)
{
if(ans%) cnt++;
ans/=;
}
printf("%d\n",cnt);
}
}
return ;
}

POJ - 2777——Count Color(懒标记线段树二进制)的更多相关文章

  1. poj 2777 Count Color(线段树区区+染色问题)

    题目链接:  poj 2777 Count Color 题目大意:  给出一块长度为n的板,区间范围[1,n],和m种染料 k次操作,C  a  b  c 把区间[a,b]涂为c色,P  a  b 查 ...

  2. poj 2777 Count Color(线段树)

    题目地址:http://poj.org/problem?id=2777 Count Color Time Limit: 1000MS   Memory Limit: 65536K Total Subm ...

  3. poj 2777 Count Color

    题目连接 http://poj.org/problem?id=2777 Count Color Description Chosen Problem Solving and Program desig ...

  4. POJ 2777 Count Color(线段树染色,二进制优化)

    Count Color Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 42940   Accepted: 13011 Des ...

  5. poj 2777 Count Color - 线段树 - 位运算优化

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 42472   Accepted: 12850 Description Cho ...

  6. POJ 2777 Count Color(线段树 + 染色问题)

    传送门:Count Color Description Chosen Problem Solving and Program design as an optional course, you are ...

  7. poj 2777 Count Color(线段树、状态压缩、位运算)

    Count Color Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 38921   Accepted: 11696 Des ...

  8. POJ 2777 Count Color(线段树之成段更新)

    Count Color Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 33311 Accepted: 10058 Descrip ...

  9. POJ 2777 Count Color (线段树成段更新+二进制思维)

    题目链接:http://poj.org/problem?id=2777 题意是有L个单位长的画板,T种颜色,O个操作.画板初始化为颜色1.操作C讲l到r单位之间的颜色变为c,操作P查询l到r单位之间的 ...

随机推荐

  1. sonarqube安装部署

    环境:Os:Centos 71.下载下载地址:https://www.sonarqube.org/sonarqube-7-7/我这里下载的是sonarqube-7-7sonarqube-7.7.zip ...

  2. The dependency `XXX` is not used in any concrete target.

    1.在新建项目,引入CocoaPod时,当创建了podfile文件后,执行pod install时报一下错误   2.这是因为 这个第三方不知道用于哪个target,所以必须指定target 解决方案 ...

  3. Codeforces Global Round 1 解题报告

    A 我的方法是: #include<bits/stdc++.h> using namespace std; #define int long long typedef long long ...

  4. zabbix回顾

    1.zabbix能收集哪些信息? 磁盘空间,磁盘IO,cpu负载,内存使用情况,开机时间,网卡的网络流量,进程数等 2.zabbix支持哪些通讯方式? agent:通过专用的代理程序进行监控,是mas ...

  5. react-native webView android使用本地html问题

    react-native WebView组件使用本地html时候,一般都是这样使用 var source = require('../html/my.html') : <WebView sour ...

  6. 数据拆分之 垂直拆分 and 水平拆分

    https://mp.weixin.qq.com/s?__biz=MzI1NDQ3MjQxNA==&mid=2247488833&idx=1&sn=4f5fe577521431 ...

  7. element-UI——el-table添加序号

    转载自:https://www.cnblogs.com/langxiyu/p/10641060.html Part.1 示例 当我们想在 el-table 中添加序号列时,如下: <el-tab ...

  8. leecode第二百三十五题(二叉搜索树的最近公共祖先)

    /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode ...

  9. 一步一步搭建vue项目

    1 安装步骤 创建一个目录,我们这里定义为Vue 在Vue目录打开dos窗体,输入如下命令:vue create myproject 选择自定义   4. 先选择要安装的项目,我们这里选择4个   5 ...

  10. MATLAB 实时脚本(live-script)使用

    在matlab2016a及以上的版本不建议安装notebook来编写实施脚本,以为之后的matlab里面会有live-script,他可以创建实施脚本,使脚本与方便操作.那么这个live script ...