当前位置: 首页 > article >正文

leetcode 1345. 跳跃游戏 IV

题目:1345. 跳跃游戏 IV - 力扣(LeetCode)

经典bfs,关键是建立所有“arr[i] == arr[j]”的连接。我的做法是用额外的存储,记录每个整数的前后整数都是哪个,再对数组排序。每个整数搜索的下个节点就是prev、next和数组中相邻且相等的整数:

struct Node {
    int val;
    int index;
    int jumps = -1;
    Node* prev = nullptr;
    Node* next = nullptr;
    Node(int val) {
        this->val = val;
    }
};
bool myComp(Node* a, Node* b) {
    return a->val < b->val;
}
class Solution {
public:
    int minJumps(vector<int>& arr) {
        size_t n = arr.size();
        if (n <= 1) {
            return 0;
        }
        vector<Node*> nodes(n);
        for (int i = 0; i < n; i++) {
            nodes[i] = new Node(arr[i]);
            if (i > 0) {
                nodes[i - 1]->next = nodes[i];
                nodes[i]->prev = nodes[i - 1];
            }
        }
        list<Node*> bfs;
        bfs.push_back(nodes[0]);
        nodes[0]->jumps = 0;
        Node* tail = nodes[n - 1];
        sort(nodes.begin(), nodes.end(), myComp);
        for (int i = 0; i < n; i++) {
            nodes[i]->index = i;
        }
        
        Node* t;
        int i;
        while (!bfs.empty()) {
            t = bfs.front();
            bfs.pop_front();
            i = t->index - 1;
            while (i >= 0 && nodes[i]->val == t->val && nodes[i]->jumps == -1) {
                nodes[i]->jumps = t->jumps + 1;
                bfs.push_back(nodes[i]);
                i--;
            }
            i = t->index + 1;
            while (i < n && nodes[i]->val == t->val && nodes[i]->jumps == -1) {
                nodes[i]->jumps = t->jumps + 1;
                bfs.push_back(nodes[i]);
                i++;
            }
            if (t->prev && t->prev->jumps == -1) {
                t->prev->jumps = t->jumps + 1;
                bfs.push_back(t->prev);
            }
            if (t->next && t->next->jumps == -1) {
                t->next->jumps = t->jumps + 1;
                bfs.push_back(t->next);
            }
            if (tail->jumps != -1) {
                return tail->jumps;
            }
        }
        return (int) n - 1;
    }
};


http://www.kler.cn/a/463321.html

相关文章:

  • 通义千问API KEY操作指南
  • 云从科技Java面试题及参考答案
  • Chapter4.2:Normalizing activations with layer normalization
  • Vue项目中生成node_modules文件夹的两种常用方法及npm优势
  • Kafka配置公网或NLB访问(TCP代理)
  • 深入浅出 Beam Search:自然语言处理中的高效搜索利器
  • 常见中间件漏洞复现
  • 【一款超好用的开源笔记Logseq本地Docker部署与远程使用指南】
  • 如何实现el-select多选下拉框中嵌套复选框并加校验不为空功能呢?
  • 核心业务从SQLServer迁移到金仓KingbaseES V9实录
  • perl:多线程 简单示例
  • 第七讲 比特币的法律地位与监管
  • 接雨水-力扣热题100
  • 使用 Jenkins 和 Spring Cloud 自动化微服务部署
  • 可编辑31页PPT | 大数据湖仓一体解决方案
  • 华为研发工程师编程题——明明的随机数
  • Win32汇编学习笔记01.环境配置
  • Apache Hive常见问题
  • 【网络】HTTP/1.0、HTTP/1.1、HTTP/2、HTTP/3比对
  • Keepalived + LVS 搭建高可用负载均衡及支持 Websocket 长连接
  • 【深度学习】Java DL4J基于 CNN 构建车辆识别与跟踪模型
  • Vue3 中的计算属性和监听属性
  • Unity3D Huatuo之AOT泛型限制及原理详解
  • 【Unity3D】A*寻路(2D究极简单版)
  • UWB定位的7种算法
  • YOLOv10-1.1部分代码阅读笔记-block.py