日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Destroying Array(并查集)

發布時間:2023/12/15 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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.
題意:按著第二個數組給出的數組序列刪除元素,每一次刪除之后問最大的連續序列的和是多少。
思路:刪除的不好弄,那么我們就倒著來,按著增加的來算。對于位置i的元素,我們嘗試著去把它和i+1和i-1合并,優先隊列維護最大值。
代碼如下:

#include<bits/stdc++.h> #define ll long long using 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<ll> 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<<ans[i]<<endl; }

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

總結

以上是生活随笔為你收集整理的Destroying Array(并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。