Destroying Array(并查集)
You are given an array consisting of n non-negative integers a1,?a2,?…,?an.
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.
Input
The first line of the input contains a single integer n (1?≤?n?≤?100?000) — the length of the array.
The second line contains n integers a1,?a2,?…,?an (0?≤?ai?≤?109).
The third line contains a permutation of integers from 1 to n — the order used to destroy elements.
Output
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.
Examples
Input
4
1 3 2 5
3 4 1 2
Output
5
4
3
0
Input
5
1 2 3 4 5
4 2 3 5 1
Output
6
5
5
1
0
Input
8
5 5 4 4 6 6 5 5
5 2 8 7 1 3 4 6
Output
18
16
11
8
8
6
6
0
Note
Consider the first sample:
Third element is destroyed. Array is now 1 3 ?*? 5. Segment with maximum sum 5 consists of one integer 5.
Fourth element is destroyed. Array is now 1 3 ?*? ?*?. Segment with maximum sum 4 consists of two integers 1 3.
First element is destroyed. Array is now ?*? 3 ?*? ?*?. Segment with maximum sum 3 consists of one integer 3.
Last element is destroyed. At this moment there are no valid nonempty segments left in this array, so the answer is equal to 0.
題意:按著第二個(gè)數(shù)組給出的數(shù)組序列刪除元素,每一次刪除之后問(wèn)最大的連續(xù)序列的和是多少。
思路:刪除的不好弄,那么我們就倒著來(lái),按著增加的來(lái)算。對(duì)于位置i的元素,我們嘗試著去把它和i+1和i-1合并,優(yōu)先隊(duì)列維護(hù)最大值。
代碼如下:
努力加油a啊,(o)/~
總結(jié)
以上是生活随笔為你收集整理的Destroying Array(并查集)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: PolandBall and Fores
- 下一篇: Mike and gcd problem