A16456 | Triangle Construction
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a regular $N$ -sided polygon. Label one arbitrary side as side $1$ , then label the next sides in clockwise order as side $2$ , $3$ , $\dots$ , $N$ . There are $A_i$ special points on side $i$ . These points are positioned such that side $i$ is divided into $A_i + 1$ segments with equal length.
For instance, suppose that you have a regular $4$ -sided polygon, i.e., a square. The following illustration shows how the special points are located within each side when $A = [3, 1, 4, 6]$ . The uppermost side is labelled as side $1$ .
You want to create as many non-degenerate triangles as possible while satisfying the following requirements. Each triangle consists of $3$ distinct special points (not necessarily from different sides) as its corners. Each special point can only become the corner of at most $1$ triangle. All triangles must not intersect with each other.
Determine the maximum number of non-degenerate triangles that you can create.
A triangle is non-degenerate if it has a positive area.
For instance, suppose that you have a regular $4$ -sided polygon, i.e., a square. The following illustration shows how the special points are located within each side when $A = [3, 1, 4, 6]$ . The uppermost side is labelled as side $1$ .
You want to create as many non-degenerate triangles as possible while satisfying the following requirements. Each triangle consists of $3$ distinct special points (not necessarily from different sides) as its corners. Each special point can only become the corner of at most $1$ triangle. All triangles must not intersect with each other.
Determine the maximum number of non-degenerate triangles that you can create.
A triangle is non-degenerate if it has a positive area.
输入格式
The first line consists of an integer $N$ ( $3 \leq N \leq 200\,000$ ).
The following line consists of $N$ integers $A_i$ ( $1 \leq A_i \leq 2 \cdot 10^9$ ).
The following line consists of $N$ integers $A_i$ ( $1 \leq A_i \leq 2 \cdot 10^9$ ).
输出格式
Output a single integer representing the maximum number of non-degenerate triangles that you can create.
输入输出样例
输入 #1
4 3 1 4 6
输出 #1
4
输入 #2
6 1 2 1 2 1 2
输出 #2
3
输入 #3
3 1 1 1
输出 #3
1
Explanation for the sample input/output #1
One possible construction which achieves maximum number of non-degenerate triangles can be seen in the following illustration.
Explanation for the sample input/output #2
One possible construction which achieves maximum number of non-degenerate triangles can be seen in the following illustration.

One possible construction which achieves maximum number of non-degenerate triangles can be seen in the following illustration.
Explanation for the sample input/output #2
One possible construction which achieves maximum number of non-degenerate triangles can be seen in the following illustration.

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