A14185 | Starry Night Camping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
At the foot of Liyushan Mountain, $n$ tents will be carefully arranged to provide accommodation for those who are willing to experience the joy of approaching nature, the tranquility of the night, and the bright starry sky.
The $i$ -th tent is located at the point of $(x_i, y_i)$ and has a weight of $w_i$ . A tent is important if and only if both $x_i$ and $y_i$ are even. You need to remove some tents such that for each remaining important tent $(x, y)$ , there do not exist $3$ other tents $(x'_1, y'_1)$ , $(x'_2, y'_2)$ and $(x'_3, y'_3)$ such that both conditions are true:
1. $|x'_j-x|, |y'_j - y|\leq 1$ for all $j \in \{1, 2, 3\}$ , and
2. these four tents form a parallelogram (or a rectangle) and one of its sides is parallel to the $x$ -axis.
Please maximize the sum of the weights of the tents that are not removed. Print the maximum value.
The $i$ -th tent is located at the point of $(x_i, y_i)$ and has a weight of $w_i$ . A tent is important if and only if both $x_i$ and $y_i$ are even. You need to remove some tents such that for each remaining important tent $(x, y)$ , there do not exist $3$ other tents $(x'_1, y'_1)$ , $(x'_2, y'_2)$ and $(x'_3, y'_3)$ such that both conditions are true:
1. $|x'_j-x|, |y'_j - y|\leq 1$ for all $j \in \{1, 2, 3\}$ , and
2. these four tents form a parallelogram (or a rectangle) and one of its sides is parallel to the $x$ -axis.
Please maximize the sum of the weights of the tents that are not removed. Print the maximum value.
输入格式
The first line contains a single integer $n$ ( $1\leq n\leq 1\,000$ ), representing the number of tents.
Each of the next $n$ lines contains three integers $x_i$ , $y_i$ and $w_i$ ( $-10^9\leq x_i,y_i \leq 10^9$ , $1\leq w_i\leq 10^9$ ), representing the coordinate of the $i$ -th tent and its weight. No two tents are located at the same point.
Each of the next $n$ lines contains three integers $x_i$ , $y_i$ and $w_i$ ( $-10^9\leq x_i,y_i \leq 10^9$ , $1\leq w_i\leq 10^9$ ), representing the coordinate of the $i$ -th tent and its weight. No two tents are located at the same point.
输出格式
A single integer — the maximum sum of the weights of the remaining tents.
输入输出样例
输入 #1
5 0 0 4 0 1 5 1 0 3 1 1 1 -1 1 2
输出 #1
12
输入 #2
32 2 2 1 2 3 1 3 2 1 3 3 1 2 6 1 2 5 1 3 6 1 3 5 1 2 8 1 2 9 1 1 8 1 1 9 1 2 12 1 2 11 1 1 12 1 1 11 1 6 2 1 7 2 1 6 3 1 5 3 1 6 6 1 7 6 1 5 5 1 6 5 1 6 8 1 5 8 1 6 9 1 7 9 1 6 12 1 5 12 1 6 11 1 7 11 1
输出 #2
24
Here is an illustration of the second example. Black triangles indicate the important tents. This example also indicates all $8$ forbidden patterns.


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