Count Color
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 34605 | Accepted: 10445 |
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
题意:
给出 L, T, O,代表有一条长度为 L(1 ~ 100000) 的板,有 T(1 ~ 30) 种颜色,有 O (1 ~ 100000)个操作。后给出 O 个操作,操作有两类,第一类 C 代表有将 L 到 R 这段区间涂为 Ti 号颜色,第二类 P 代表询问 L 到 R 这段颜色有多少种,每次 P 操作的时候就输出这个数。
思路:
线段树 + 延迟标记。因为一共有 30 号颜色,所以用一个二进制数来表示每一段涂色的情况,树维护二进制涂色的情况,同时标记维护覆盖的情况,push_down 操作为直接覆盖操作,所以直接等于 mark 标记颜色就好,push_up 操作为左右子区间的或操作。统计区间内的颜色数的时候也需要用 或 来维护结果,最后对结果求出二进制有多少个 1 的情况即为答案。注意这题给出的左右区间数不严格遵守左边大于右边,所以还要判断要不要交换。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAX = 100005; int color[MAX * 3], mark[MAX * 3]; int sum; int count_one() { int ans = 0; while (sum) { if (sum % 2) ++ans; sum >>= 1; } return ans; } void push_up(int node) { color[node] = color[node << 1] | color[node << 1 | 1]; } void push_down(int node, int l, int r) { if (mark[node]) { mark[node << 1] = mark[node]; mark[node << 1 | 1] = mark[node]; color[node << 1] = mark[node]; color[node << 1 | 1] = mark[node]; mark[node] = 0; } } void build (int node, int l, int r) { if (l == r) { color[node] = 1; mark[node] = 0; } else { int mid = (l + r) >> 1; build(node << 1, l, mid); build(node << 1 | 1, mid + 1, r); push_up(node); } } void update (int node, int l, int r, int cl, int cr, int c) { if (cl > r || cr < l) return; if (cl <= l && cr >= r) { mark[node] = c; color[node] = c; return; } push_down(node, l, r); int mid = (r + l) >> 1; update(node << 1, l, mid, cl, cr, c); update(node << 1 | 1, mid + 1, r, cl, cr, c); push_up(node); } void query (int node, int l, int r, int cl, int cr) { if (cl > r || cr < l) return; if (cl <= l && cr >= r) { sum |= color[node]; return; } push_down(node, l, r); int mid = (r + l) >> 1; query(node << 1, l, mid, cl, cr); query(node << 1 | 1, mid + 1, r, cl, cr); push_up(node); } int main() { int n, c, o; while(~scanf("%d%d%d", &n, &c, &o)) { build(1, 1, n); while (o--) { char c; scanf(" %c", &c); if (c == 'C') { int cl, cr, col; scanf("%d%d%d", &cl, &cr, &col); if (cl > cr) swap(cl, cr); update(1, 1, n, cl, cr, 1 << (col - 1)); } else { int cl, cr; scanf("%d%d", &cl, &cr); if (cl > cr) swap(cl, cr); sum = 0; query(1, 1, n, cl, cr); printf("%d\n", count_one()); } } } return 0; }
相关推荐
1. **节点定义**:`ITREE_NODE` 结构体定义了一个线段树节点,包括左右子节点指针、区间边界(`left`, `right`)、区间测量值(`measure`)、区间内的元素计数(`count`)、以及与区间相关的线数(`lines`)和边界...
2. 线段树把区间上的任意一条长度为 L 的线段都分成不超过 2logL 条线段。 时间复杂度 线段树的时间复杂度主要取决于插入、删除和查找操作的复杂度。一般来说,插入、删除和查找元素的时间复杂度都是 O(log L)。 ...
在计算机科学中,线段树通常被用作解决区间最值、区间加减、区间统计等问题。它实际上是一棵特殊的二叉树,每个节点代表一个区间,而每个节点的左右子节点分别代表原区间的左半部分和右半部分。 线段树的定义: ...
线段树是一种高效的数据结构,常被用于处理区间查询或更新的问题。它是一棵二叉树,其中每个节点代表一个特定的区间。具体来说: - **叶子节点**:代表一个单位区间,即形式为`[i, i]`的区间。 - **非叶子节点**:...
根据给定的文件信息,我们可以总结出关于“线段树模板”的相关知识点: ### 线段树的基本概念 线段树是一种数据结构,主要用于处理区间...在实际应用中,线段树可以用于解决诸如统计区间最大值、最小值、和等问题。
`:定义线段树的结构体,其中`left`和`right`表示节点所覆盖的区间左右边界,`count`表示该区间内的元素数量。 2. **线段树构建**: - `void make_tree(int l, int r, int loc)`:函数用于构建线段树。 - 初始化...
**源码统计工具SourceCount详解** 在软件开发过程中,代码量是衡量项目规模、工作量以及维护难度的一个重要指标。SourceCount是一款强大的代码统计工具,它可以帮助开发者快速准确地统计项目中的代码行数,这对于...
源代码统计工具SourceCount是一款非常实用的软件,它专为开发者设计,用于高效地分析和统计项目中的代码结构。在软件开发过程中,了解代码的组成是至关重要的,它可以帮助我们评估项目的规模,优化代码质量,以及...
本教程将介绍一个特定的指标公式,用于进行区间统计,帮助用户快速获取历史数据中的关键统计信息。 首先,这个指标公式主要统计了过去50天内的几个关键指标,包括阳线数量、阴线数量、上涨天数、下跌天数、红色成交...
线段树的每个节点代表一个区间,包含区间的边界B和E,以及一个计数器Count,用于记录覆盖该区间的线段数量。节点还包括指向左右子树的指针,形成树状结构。静态数据结构则可以用数组表示,如B[], E[], C[], LSON[], ...
《代码行统计工具(CountLines)——掌握Java代码量的利器》 在软件开发过程中,代码行数(LOC,Lines of Code)常被用来作为衡量项目规模和工作量的一个重要指标。为了方便开发者对Java代码进行统计分析,出现了名为...
在qwt3d-examples-master的基础上,修改了一下显示... i<count+1; ++i) { c3[0] = count +i; c3[1] = i%count +count +1; c3[2] = count +count+i%count +1; c3[3] = count +count+i; conecell.push_back(c3); }
Count Lines of code 统计代码行数
《代码统计工具CountLines详解与应用》 在软件开发过程中,代码量的统计是一项重要的工作,它可以帮助开发者了解项目的规模,评估开发进度,甚至作为衡量工作效率的一种方式。今天我们要介绍的是一款名为“count...
线段树的一个特殊性质是它可以方便地维护区间统计信息,例如计算线段并集的长度。每个节点的M[v]字段可以用来存储从该节点到叶节点的子区间长度之和,根据C[v]的值进行相应更新。 线段树还可以进行变形以适应不同的...
《SourceCount代码统计工具详解与应用》 在软件开发过程中,代码统计是一项不可或缺的工作,它可以帮助我们了解项目规模,评估工作量,优化代码结构,以及进行项目管理。今天我们将聚焦于名为"SourceCount"的代码...
`CountV1-4(count).zip` 是一个专门针对这一需求的工具包,它包含了用于CAD绘图时的统计和汇总功能。这个压缩包的核心文件是 `CountV1-4.lsp` 和 `count.lsp`,它们都是LISP(AutoLISP)程序,这是一种为AutoCAD定制...
《源代码行统计工具SourceCount详解》 在软件开发过程中,了解项目的代码量是一项重要的管理任务,它有助于评估项目的规模、复杂性以及开发进度。源代码行统计工具,如"SourceCount",便是为此目的而设计的。Source...
代码统计工具是一款强大的软件开发辅助应用,主要用于分析和量化项目的代码变化情况。它能够帮助开发者了解项目的演化历程,包括新增、修改和删除的代码行数,这对于代码质量管理、项目进度跟踪以及团队协作效率评估...
这个名为"COUNT_CHAR"的程序正是为了实现这样的功能,即对用户输入的一行字符进行分类统计。在这个程序中,我们将关注以下几个关键知识点: 1. **字符编码**:在计算机系统中,字符是以特定的编码形式存储的,如...