POJ2777(线段树涂色问题)
Count Color
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 42828 | Accepted: 12973 |
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.
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
思路:因为只有30种颜色,所以可以用2进制数颜色。
注意:l可能大于r
#include <cstdio> #include <algorithm> using namespace std; const int MAXN = 100005; struct Node{ int l, r; int color; bool lazy; }a[MAXN*3]; int n, t, m, tag; void build(int rt, int l, int r) { a[rt].l = l; a[rt].r = r; a[rt].lazy = false; if(l == r) { a[rt].color = 1; return ; } int mid = (l + r) >> 1; build(rt << 1, l, mid); build((rt << 1) | 1, mid + 1, r); a[rt].color = a[rt<<1].color | a[(rt<<1)|1].color; } void pushDown(int rt) { if(a[rt].lazy) { a[rt<<1].color = a[rt].color; a[(rt<<1)|1].color = a[rt].color; a[rt<<1].lazy = a[rt].lazy; a[(rt<<1)|1].lazy = a[rt].lazy; a[rt].lazy = false; } } void update(int rt, int l, int r, int val) { if(a[rt].l == l && a[rt].r == r) { a[rt].color = 1 << (val - 1); a[rt].lazy = true; return ; } pushDown(rt); int mid = (a[rt].l + a[rt].r) >> 1; if(r <= mid) { update(rt << 1, l, r, val); } else if(mid < l) { update((rt << 1) | 1, l, r, val); } else { update(rt << 1, l, mid, val); update((rt << 1) | 1, mid + 1, r, val); } a[rt].color = a[rt<<1].color | a[(rt<<1)|1].color; } void query(int rt, int l, int r) { if(a[rt].l == l && a[rt].r == r) { tag |= a[rt].color; return ; } pushDown(rt); int mid = (a[rt].l + a[rt].r) >> 1; if(r <= mid) { query(rt << 1, l, r); } else if(mid < l) { query((rt << 1) | 1, l, r); } else { query(rt << 1, l, mid); query((rt << 1) | 1, mid + 1, r); } } int main() { while(scanf("%d %d %d", &n, &t, &m) != EOF) { build(1, 1, n); while(m--) { char op; scanf("%*c%c", &op); if(op == 'C') { int l, r, val; scanf("%d %d %d", &l, &r, &val); if(l > r) swap(l, r); update(1, l, r, val); } else { int l, r; scanf("%d %d", &l, &r); if(l > r) swap(l, r); tag = 0; query(1, l, r); int res = 0; while(tag > 0) { if(tag & 1) { res++; } tag >>= 1; } printf("%d\n", res); } } } return 0; }
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步