博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Destroying Array(并查集)
阅读量:4135 次
发布时间:2019-05-25

本文共 2603 字,大约阅读时间需要 8 分钟。

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.
题意:按着第二个数组给出的数组序列删除元素,每一次删除之后问最大的连续序列的和是多少。
思路:删除的不好弄,那么我们就倒着来,按着增加的来算。对于位置i的元素,我们尝试着去把它和i+1和i-1合并,优先队列维护最大值。
代码如下:

#include
#define ll long longusing namespace std;const int maxx=1e5+100;ll a[maxx];ll ans[maxx];int b[maxx];int f[maxx];ll dis[maxx];int n;inline int getf(int u){
return (u==f[u]?u:f[u]=getf(f[u]));}int main(){
scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%I64d",&a[i]); for(int i=1;i<=n;i++) scanf("%d",&b[i]); for(int i=1;i<=n;i++) f[i]=i,dis[i]=-1;//因为数组元素有可能为0,所以起始值设置为-1。 ans[n]=0; priority_queue
q; q.push(0); for(int j=n;j>=1;j--) {
dis[b[j]]=a[b[j]]; q.push(dis[b[j]]); int i=b[j]; if(i+1<=n&&dis[i+1]!=-1) {
int t1=getf(i+1); int t2=getf(i); f[t1]=t2; dis[t2]+=dis[t1]; dis[t1]=0; q.push(dis[t2]); } if(i-1>=1&&dis[i-1]!=-1) {
int t1=getf(i-1); int t2=getf(i); f[t1]=t2; dis[t2]+=dis[t1]; dis[t1]=0; q.push(dis[t2]); } ans[j-1]=q.top(); } for(int i=1;i<=n;i++) cout<
<

努力加油a啊,(o)/~

转载地址:http://aytvi.baihongyu.com/

你可能感兴趣的文章
Servlet的生命周期
查看>>
JAVA八大经典书籍,你看过几本?
查看>>
《读书笔记》—–书单推荐
查看>>
JAVA数据类型
查看>>
【Python】学习笔记——-6.2、使用第三方模块
查看>>
【Python】学习笔记——-7.0、面向对象编程
查看>>
【Python】学习笔记——-7.2、访问限制
查看>>
【Python】学习笔记——-7.3、继承和多态
查看>>
【Python】学习笔记——-7.5、实例属性和类属性
查看>>
git中文安装教程
查看>>
虚拟机 CentOS7/RedHat7/OracleLinux7 配置静态IP地址 Ping 物理机和互联网
查看>>
Jackson Tree Model Example
查看>>
常用js收集
查看>>
如何防止sql注入
查看>>
springmvc传值
查看>>
在Eclipse中查看Android源码
查看>>
Android使用webservice客户端实例
查看>>
[转]C语言printf
查看>>
C 语言 学习---获取文本框内容及字符串拼接
查看>>
C 语言学习 --设置文本框内容及进制转换
查看>>