网站首页 站内搜索

搜索结果

查询Tags标签: 307,共有 3条记录
  • [Leetcode Weekly Contest]307

    链接:LeetCode [Leetcode]2383. 赢得比赛需要的最少训练时长 你正在参加一场比赛,给你两个 正 整数 initialEnergy 和 initialExperience 分别表示你的初始精力和初始经验。 另给你两个下标从 0 开始的整数数组 energy 和 experience,长度均为 n 。 你将会 依次 对上 n…

    2022/8/25 6:24:19 人评论 次浏览
  • 307 最小生成树 Prim 算法

    视频链接:// Luogu P3366 【模板】最小生成树 #include <iostream> #include <cstring> #include <algorithm> #include <vector> #define inf 1e9 using namespace std;int n,m,a,b,c,ans,cnt; const int N=5010; struct edge{int v,w;}; vecto…

    2022/5/29 1:22:56 人评论 次浏览
  • 307. 区域和检索 - 数组可修改

    https://leetcode-cn.com/problems/range-sum-query-mutable/ 给你一个数组 nums ,请你完成两类查询。 其中一类查询要求 更新 数组nums下标对应的值 另一类查询要求返回数组nums中索引left和索引right之间(包含)的nums元素的 和,其中left <= right 实现 NumArray …

    2022/4/4 23:49:37 人评论 次浏览
扫一扫关注最新编程教程