Count Color
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 55483 Accepted: 16628
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:
- “C A B C” Color the board from segment A to segment B with color C.
- “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
题意:可以理解为L为多少个气球,T代表有多少种颜色,O代表操作数。C命令是区间[A,B]的气球染成C颜色,P命令是查询区间[A,B]有多少不同的颜色。
题解:一开始的时候是线段树维护大小为30的数组,明显被卡掉了。于是换了个思路,其实就是用二进制做,最大就是1<<L-1,而每一位二进制上代表存在,0代表不存在。于是就能很简单的用位运算进行实现,唯一的难点就是要想到二进制,幸好做这道题的前一天学的是状压dp。
1 | #include<iostream> |