leetcode 3510

3510: 移除最小数对使数组有序Ⅱ

题干同 leetcode 3507

区别:(数据规模增大)

  • 1 <= nums.length <= 50 (3507)
  • -1000 <= nums[i] <= 1000
  • 1 <= nums.length <= 105 (3510)
  • -109 <= nums[i] <= 109

暴力模拟方法仅针对小数据范围,用于本题会超时。

思路:懒删除堆+数组模拟双向链表(详解见leetcode 3507)

复制代码
class Solution {
public:
    int minimumPairRemoval(vector<int>& nums) {
        int n=nums.size();
        priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<>> pq;
        int dec=0;
        for(int i=0;i<n-1;i++){
            int x=nums[i],y=nums[i+1];
            if(x>y) dec++;
            pq.emplace(x+y,i);
        }
        vector<int> left(n+1),right(n);
        ranges::iota(left,-1);
        ranges::iota(right,1);

        vector<long long> a(nums.begin(),nums.end());
        int ans=0;
        while(dec){
            ans++;
            while(right[pq.top().second]>=n || pq.top().first!=a[pq.top().second]+a[right[pq.top().second]]){
                pq.pop();
            }
            auto[s,i]=pq.top();
            pq.pop();

            int nxt=right[i];
            dec-=a[i]>a[nxt];
            int pre=left[i];
            if(pre>=0){
                dec-=a[pre]>a[i];
                dec+=a[pre]>s;
                pq.emplace(a[pre]+s,pre);
            }
            int nxt2=right[nxt];
            if(nxt2<n){
                dec-=a[nxt]>a[nxt2];
                dec+=s>a[nxt2];
                pq.emplace(s+a[nxt2],i);
            }
            a[i]=s;
            int l=left[nxt],r=right[nxt];
            right[l]=r;
            left[r]=l;
            right[nxt]=n;
        }

        return ans;
    }
};
相关推荐
wuweijianlove3 小时前
算法性能的渐近与非渐近行为对比的技术4
算法
_dindong3 小时前
cf1091div2 C.Grid Covering(数论)
c++·算法
AI成长日志3 小时前
【Agentic RL】1.1 什么是Agentic RL:从传统RL到智能体学习
人工智能·学习·算法
黎阳之光4 小时前
黎阳之光:视频孪生领跑者,铸就中国数字科技全球竞争力
大数据·人工智能·算法·安全·数字孪生
skywalker_114 小时前
力扣hot100-3(最长连续序列),4(移动零)
数据结构·算法·leetcode
6Hzlia4 小时前
【Hot 100 刷题计划】 LeetCode 17. 电话号码的字母组合 | C++ 回溯算法经典模板
c++·算法·leetcode
wfbcg4 小时前
每日算法练习:LeetCode 209. 长度最小的子数组 ✅
算法·leetcode·职场和发展
_日拱一卒5 小时前
LeetCode:除了自身以外数组的乘积
数据结构·算法·leetcode
计算机安禾5 小时前
【数据结构与算法】第36篇:排序大总结:稳定性、时间复杂度与适用场景
c语言·数据结构·c++·算法·链表·线性回归·visual studio
SatVision炼金士5 小时前
合成孔径雷达干涉测量(InSAR)沉降监测算法体系
算法