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;
    }
};
相关推荐
颜酱3 小时前
单调栈:从模板到实战
javascript·后端·算法
CoovallyAIHub7 小时前
仿生学突破:SILD模型如何让无人机在电力线迷宫中发现“隐形威胁”
深度学习·算法·计算机视觉
CoovallyAIHub7 小时前
从春晚机器人到零样本革命:YOLO26-Pose姿态估计实战指南
深度学习·算法·计算机视觉
CoovallyAIHub7 小时前
Le-DETR:省80%预训练数据,这个实时检测Transformer刷新SOTA|Georgia Tech & 北交大
深度学习·算法·计算机视觉
CoovallyAIHub7 小时前
强化学习凭什么比监督学习更聪明?RL的“聪明”并非来自算法,而是因为它学会了“挑食”
深度学习·算法·计算机视觉
CoovallyAIHub7 小时前
YOLO-IOD深度解析:打破实时增量目标检测的三重知识冲突
深度学习·算法·计算机视觉
NAGNIP18 小时前
轻松搞懂全连接神经网络结构!
人工智能·算法·面试
NAGNIP18 小时前
一文搞懂激活函数!
算法·面试
董董灿是个攻城狮19 小时前
AI 视觉连载7:传统 CV 之高斯滤波实战
算法