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;
    }
};
相关推荐
handler019 分钟前
【算法】并查集(普通/扩展/带权)模板与例题
数据结构·c++·笔记·算法·c·图论·查并集
qq74223498425 分钟前
从“感知”到“决断”:测评百度伐谋产业决策智能体的端到端推理与行动机制
人工智能·算法·百度·大模型·运筹优化
huohaiyu1 小时前
深入解析Java垃圾回收机制
java·开发语言·算法·gc
浮芷.1 小时前
鸿蒙PC端 TTS 并发调用问题详解:资源竞争与队列管理
算法·华为·开源·harmonyos·鸿蒙·鸿蒙系统
装不满的克莱因瓶2 小时前
掌握感知器的学习原理
人工智能·python·神经网络·算法·ai·卷积神经网络
Lsk_Smion2 小时前
力扣实训 _ [994].腐烂的橘子/图论
算法·leetcode·图论
轻微的风格艾丝凡2 小时前
两电平三相VSC整流模式从不控整流平滑切换至有源整流调试记录
算法·dsp·c2000
dongf20192 小时前
R语言KNN算法
算法·数据分析·r语言
小O的算法实验室2 小时前
2025年IEEE TASE,基于双层耦合平均场博弈的大规模智能体集成任务分配与轨迹规划
人工智能·算法·机器学习
8Qi82 小时前
LeetCode 337:打家劫舍 III(House Robber III)—— 题解 ✅
算法·leetcode·二叉树·动态规划