A10636 | Destroying Array
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array consisting of $n$ non-negative integers $a_{1},a_{2},...,a_{n}$ .
You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from $1$ to $n$ defining the order elements of the array are destroyed.
After each element is destroyed you have to find out the segment of the array, such that it contains no destroyed elements and the sum of its elements is maximum possible. The sum of elements in the empty segment is considered to be $0$ .
You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from $1$ to $n$ defining the order elements of the array are destroyed.
After each element is destroyed you have to find out the segment of the array, such that it contains no destroyed elements and the sum of its elements is maximum possible. The sum of elements in the empty segment is considered to be $0$ .
输入格式
The first line of the input contains a single integer $n$ ( $1<=n<=100000$ ) — the length of the array.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=10^{9}$ ).
The third line contains a permutation of integers from $1$ to $n$ — the order used to destroy elements.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=10^{9}$ ).
The third line contains a permutation of integers from $1$ to $n$ — the order used to destroy elements.
输出格式
Print $n$ lines. The $i$ -th line should contain a single integer — the maximum possible sum of elements on the segment containing no destroyed elements, after first $i$ operations are performed.
输入输出样例
输入 #1
4 1 3 2 5 3 4 1 2
输出 #1
5 4 3 0
输入 #2
5 1 2 3 4 5 4 2 3 5 1
输出 #2
6 5 5 1 0
输入 #3
8 5 5 4 4 6 6 5 5 5 2 8 7 1 3 4 6
输出 #3
18 16 11 8 8 6 6 0
Consider the first sample:
1. Third element is destroyed. Array is now $1 3 * 5$ . Segment with maximum sum $5$ consists of one integer $5$ .
2. Fourth element is destroyed. Array is now $1 3 * *$ . Segment with maximum sum $4$ consists of two integers $1 3$ .
3. First element is destroyed. Array is now $* 3 * *$ . Segment with maximum sum $3$ consists of one integer $3$ .
4. Last element is destroyed. At this moment there are no valid nonempty segments left in this array, so the answer is equal to $0$ .
1. Third element is destroyed. Array is now $1 3 * 5$ . Segment with maximum sum $5$ consists of one integer $5$ .
2. Fourth element is destroyed. Array is now $1 3 * *$ . Segment with maximum sum $4$ consists of two integers $1 3$ .
3. First element is destroyed. Array is now $* 3 * *$ . Segment with maximum sum $3$ consists of one integer $3$ .
4. Last element is destroyed. At this moment there are no valid nonempty segments left in this array, so the answer is equal to $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted