A13750 | Rainbow Rectangles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Shrimpy Duc is a fat and greedy boy who is always hungry. After a while of searching for food to satisfy his never-ending hunger, Shrimpy Duc finds M&M candies lying unguarded on a $L \times L$ grid. There are $n$ M&M candies on the grid, the $i$ -th M&M is currently located at $(x_i + 0.5, y_i + 0.5),$ and has color $c_i$ out of a total of $k$ colors (the size of M&Ms are insignificant).
Shrimpy Duc wants to steal a rectangle of M&Ms, specifically, he wants to select a rectangle with integer coordinates within the grid and steal all candies within the rectangle. Shrimpy Duc doesn't need to steal every single candy, however, he would like to steal at least one candy for each color.
In other words, he wants to select a rectangle whose sides are parallel to the coordinate axes and whose left-bottom vertex $(X_1, Y_1)$ and right-top vertex $(X_2, Y_2)$ are points with integer coordinates satisfying $0 \le X_1 < X_2 \le L$ and $0 \le Y_1 < Y_2 \le L$ , so that for every color $1 \le c \le k$ there is at least one M&M with color $c$ that lies within that rectangle.
How many such rectangles are there? This number may be large, so you only need to find it modulo $10^9 + 7$ .
Shrimpy Duc wants to steal a rectangle of M&Ms, specifically, he wants to select a rectangle with integer coordinates within the grid and steal all candies within the rectangle. Shrimpy Duc doesn't need to steal every single candy, however, he would like to steal at least one candy for each color.
In other words, he wants to select a rectangle whose sides are parallel to the coordinate axes and whose left-bottom vertex $(X_1, Y_1)$ and right-top vertex $(X_2, Y_2)$ are points with integer coordinates satisfying $0 \le X_1 < X_2 \le L$ and $0 \le Y_1 < Y_2 \le L$ , so that for every color $1 \le c \le k$ there is at least one M&M with color $c$ that lies within that rectangle.
How many such rectangles are there? This number may be large, so you only need to find it modulo $10^9 + 7$ .
输入格式
The first line contains three positive integers $n, k, L$ $(1 \leq k \leq n \leq 2 \cdot 10^3, 1 \leq L \leq 10^9 )$ — the number of M&Ms, the number of colors and the length of the grid respectively.
The following $n$ points describe the M&Ms. Each line contains three integers $x_i, y_i, c_i$ $(0 \leq x_i, y_i < L, 1 \le c_i \le k)$ — the coordinates and color of the $i$ -th M&M respectively.
Different M&Ms have different coordinates ( $x_i \ne x_j$ or $y_i \ne y_j$ for every $i \ne j$ ), and for every $1 \le c \le k$ there is at least one M&M with color $c$ .
The following $n$ points describe the M&Ms. Each line contains three integers $x_i, y_i, c_i$ $(0 \leq x_i, y_i < L, 1 \le c_i \le k)$ — the coordinates and color of the $i$ -th M&M respectively.
Different M&Ms have different coordinates ( $x_i \ne x_j$ or $y_i \ne y_j$ for every $i \ne j$ ), and for every $1 \le c \le k$ there is at least one M&M with color $c$ .
输出格式
Output a single integer — the number of rectangles satisfying Shrimpy Duc's conditions, modulo $10^9 + 7$ .
输入输出样例
输入 #1
4 2 4 3 2 2 3 1 1 1 1 1 1 2 1
输出 #1
20
输入 #2
5 3 10 6 5 3 5 3 1 7 9 1 2 3 2 5 0 2
输出 #2
300
输入 #3
10 4 10 5 4 4 0 0 3 6 0 1 3 9 2 8 7 1 8 1 3 2 1 3 6 3 2 3 5 3 4 3 4
输出 #3
226
Grid for the first sample:


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted