`
xingbinice
  • 浏览: 42148 次
  • 性别: Icon_minigender_1
  • 来自: 海南
社区版块
存档分类
最新评论

leetCode周赛93解题报告 javascript

阅读更多

比赛地址

https://leetcode-cn.com/contest/weekly-contest-93

 

868. 二进制间距

给定一个正整数 N,找到并返回 N 的二进制表示中两个连续的 1 之间的最长距离。 

如果没有两个连续的 1,返回 0 。

 

示例 1:

输入:22
输出:2
解释:
22 的二进制是 0b10110 。
在 22 的二进制表示中,有三个 1,组成两对连续的 1 。
第一对连续的 1 中,两个 1 之间的距离为 2 。
第二对连续的 1 中,两个 1 之间的距离为 1 。
答案取两个距离之中最大的,也就是 2 。

示例 2:

输入:5
输出:2
解释:
5 的二进制是 0b101 。

示例 3:

输入:6
输出:1
解释:
6 的二进制是 0b110 。

示例 4:

输入:8
输出:0
解释:
8 的二进制是 0b1000 。
在 8 的二进制表示中没有连续的 1,所以返回 0 。

 

提示:

  • 1 <= N <= 10^9

 

题解:简单难度,转二进制字符串遍历间距。

 

/**
 * @param {number} N
 * @return {number}
 */
var binaryGap = function(N) {
    var s = N.toString(2);
    var ans = 0;
    var pre = -1;
    for (var i = 0; i < s.length; i++) {
        if (s[i] == "1") {
            if (pre != -1) {
                ans = Math.max(ans, i - pre);
            }
            pre = i;
        }
    }
    return ans;
};

 

 

 

 

 

869. 重新排序得到 2 的幂

从正整数 N 开始,我们按任何顺序(包括原始顺序)将数字重新排序,注意其前导数字不能为零。

如果我们可以通过上述方式得到 2 的幂,返回 true;否则,返回 false

 

示例 1:

输入:1
输出:true

示例 2:

输入:10
输出:false

示例 3:

输入:16
输出:true

示例 4:

输入:24
输出:false

示例 5:

输入:46
输出:true

 

提示:

  1. 1 <= N <= 10^9

 

题解:根据N的取值范围,存储2的0~30次方31个数字中每位数字的次数,以此对比N的每位数字的数量,这样计算量较小,不必从1~N遍历。

 

/**
 * @param {number} N
 * @return {boolean}
 */
var reorderedPowerOf2 = function(N) {
    var cal = function(arr, n) {
        var k = 0;
        while(n > 0 && k++ < 10) {
            arr[n % 10]++;
            n = Math.floor(n / 10);
        }
    }
    var counts = new Array(10).fill(0);
    cal(counts, N);
    for (var i = 0; i < 31; i++) {
        var need = new Array(10).fill(0);
        cal(need, 1 << i);
        for (var j = 0; j < 10; j++) {
            if (need[j] != counts[j]) {
                break;
            }
        }
        if (j == 10) {
            return true;
        }
    }
    return false;
};

 

 

 

 

 

870. 优势洗牌

给定两个大小相等的数组 A 和 B,A 相对于 B 的优势可以用满足 A[i] > B[i] 的索引 i 的数目来描述。

返回 A 的任意排列,使其相对于 B 的优势最大化。

 

示例 1:

输入:A = [2,7,11,15], B = [1,10,4,11]
输出:[2,11,7,15]

示例 2:

输入:A = [12,24,8,32], B = [13,25,32,11]
输出:[24,32,8,12]

 

提示:

  1. 1 <= A.length = B.length <= 10000
  2. 0 <= A[i] <= 10^9
  3. 0 <= B[i] <= 10^9

 

题解:贪心思路,将A、B排序,从小到大对应位置依次摆入A比B大的值。

 

/**
 * @param {number[]} A
 * @param {number[]} B
 * @return {number[]}
 */
var advantageCount = function(A, B) {
    var n = A.length;
    var b = [];
    for (var i = 0; i < n; i++) {
        b.push({p:i, v:B[i]});
    }
    b.sort((a,b)=>a.v-b.v);
    A.sort((a,b)=>a-b);
    var p = 0;
    var ans = new Array(n).fill(-1);
    // 从小到大对应位置依次摆入A比B大的值
    for (var i = 0; i < n; i++) {
        while(p < n) {
            if (A[p] > b[i].v) {
                ans[b[i].p] = A[p];
                A[p++] = -1;
                break;
            }
            p++;
        }
    }
    var p = 0;
    // 其余位置再没有A比B大的,随意填充
    for (var i = 0; i < n; i++) {
        if (A[i] != -1) {
            while(p < n) {
                if (ans[p] == -1) {
                    ans[p++] = A[i];
                    break;
                }
                p++;
            }
        }
    }
    return ans;
};

 

 

 

 

 

871. 最低加油次数

汽车从起点出发驶向目的地,该目的地位于出发位置东面 target 英里处。

沿途有加油站,每个 station[i] 代表一个加油站,它位于出发位置东面 station[i][0] 英里处,并且有 station[i][1] 升汽油。

假设汽车油箱的容量是无限的,其中最初有 startFuel 升燃料。它每行驶 1 英里就会用掉 1 升汽油。

当汽车到达加油站时,它可能停下来加油,将所有汽油从加油站转移到汽车中。

为了到达目的地,汽车所必要的最低加油次数是多少?如果无法到达目的地,则返回 -1 。

注意:如果汽车到达加油站时剩余燃料为 0,它仍然可以在那里加油。如果汽车到达目的地时剩余燃料为 0,仍然认为它已经到达目的地。

 

示例 1:

输入:target = 1, startFuel = 1, stations = []
输出:0
解释:我们可以在不加油的情况下到达目的地。

示例 2:

输入:target = 100, startFuel = 1, stations = [[10,100]]
输出:-1
解释:我们无法抵达目的地,甚至无法到达第一个加油站。

示例 3:

输入:target = 100, startFuel = 10, stations = [[10,60],[20,30],[30,30],[60,40]]
输出:2
解释:
我们出发时有 10 升燃料。
我们开车来到距起点 10 英里处的加油站,消耗 10 升燃料。将汽油从 0 升加到 60 升。
然后,我们从 10 英里处的加油站开到 60 英里处的加油站(消耗 50 升燃料),
并将汽油从 10 升加到 50 升。然后我们开车抵达目的地。
我们沿途在1两个加油站停靠,所以返回 2 。

 

提示:

  1. 1 <= target, startFuel, stations[i][1] <= 10^9
  2. 0 <= stations.length <= 500
  3. 0 < stations[0][0] < stations[1][0] < ... < stations[stations.length-1][0] < target

 

题解:若是暴力求解会超时,本题需要优先队列贪心求解。将当前燃料能到达的所有站点的加油量入队,每次取最大的油量,以此循环直至到达终点。

/**
 * 优先级队列类
 */
var PQueue = function() {
    //记录数组
    this._records = [];
    //优先级比较方法
    this._cmp_func = function(a, b) {
        return b - a;
    };
};
//将记录插入队列
PQueue.prototype.enQueue = function(record) {
    this._records.push(record);
};
//删除并返回队头记录
PQueue.prototype.deQueue = function() {
    var pos = 0;
    for (var i = 1; i < this._records.length; i++) {
        if (this._cmp_func(this._records[pos], this._records[i]) > 0) {
            pos = i;
        }
    }
    return this._records.splice(pos, 1)[0];
};
//判断队列是否为空
PQueue.prototype.isEmpty = function() {
    return this._records.length == 0;
};
/**
 * @param {number} target
 * @param {number} startFuel
 * @param {number[][]} stations
 * @return {number}
 */
var minRefuelStops = function(target, startFuel, stations) {
    var pq = new PQueue();
    var ans = 0;
    var i = 0;
    var fuel = startFuel;
    while(true) {
        if (fuel >= target) {
            return ans;
        }
        while(i < stations.length && stations[i][0] <= fuel) {
            pq.enQueue(stations[i++][1]);
        }
        if (pq.isEmpty()) {
            return -1;
        }
        fuel += pq.deQueue();
        ans++;
    }
};

 以上优先队列的实现,插入时间为O(1),出队时间为O(N)。如果对出队时间要求较高,可以用堆来实现,类似堆排序,出队时间优化至O(logN)。

/**
 * 优先级队列类
 */
var PQueue = function() {
    //记录数组
    this._records = [];
    //优先级比较方法
    this._cmp_func = function(a, b) {
        return b - a;
    };
};
//堆向上调整
PQueue.prototype._heapUpAdjust = function(index) {
    var records = this._records;
    var record = records[index];
    var cmp_func = this._cmp_func;
    while (index > 0) {
        var parent_index = Math.floor((index - 1) / 2);
        var parent_record = records[parent_index];
        if (cmp_func(record, parent_record) < 0) {
            records[index] = parent_record;
            index = parent_index;
        } else {
            break;
        }
    }
    records[index] = record;
};
//堆向下调整
PQueue.prototype._heapDownAdjust = function(index) {
    var records = this._records;
    var record = records[index];
    var cmp_func = this._cmp_func;
    var length = records.length;
    var child_index = 2 * index + 1;
    while (child_index < length) {
        if (child_index + 1 < length && cmp_func(records[child_index], records[child_index + 1]) > 0) {
            child_index ++;
        }
        var child_record = records[child_index];
        if (cmp_func(record, child_record) > 0) {
            records[index] = child_record;
            index = child_index;
            child_index = 2 * index + 1;
        } else {
            break;
        }
    }
    records[index] = record;
};
//将记录插入队列
PQueue.prototype.enQueue = function(record) {
    var records = this._records;
    records.push(record);
    this._heapUpAdjust(records.length - 1);
};
//删除并返回队头记录
PQueue.prototype.deQueue = function() {
    var records = this._records;
    if (!records.length)
        return undefined;
    var record = records[0];
    if (records.length == 1) {
        records.length = 0;
    } else {
        records[0] = records.pop();
        this._heapDownAdjust(0);
    }
    return record;
};
//判断队列是否为空
PQueue.prototype.isEmpty = function() {
    return this._records.length == 0;
};

 

 

 

0
0
分享到:
评论

相关推荐

    leetcode周赛难度-leetcode:leetcode

    周赛难度LeetCode 题解 一题目列表 细绳 # 标题 标签 困难 解决方案 描述 1 细绳 中等的 2 细绳 中等的 3 细绳 中等的 4 细绳 中等的 DP # 标题 标签 困难 解决方案 描述 1 DP 中等的 2 DP 中等的 3 DP 中等的 4 DP ...

    leetcode周赛积分-leetcode:leetcode刷题记录

    leetcode周赛积分 leetcode 推荐 No. Problems Solutions Tag 32 DP, Stack 周赛 (weekly-content) No. Solutions Completion Date 2020.07.05 刷题记录 No. Problems Solutions Completion Date 329 2020.07.26 16 ...

    leetcode周赛有原题吗-leetcode:leetcodepractice(Java),包含《剑指offer》和少量《leetbook》

    leetcode周赛有原题吗 leetcode 题号 题目 难度 tag 两数之和 简单 两数相加 中等 无重复字符的最长子串 中等 : 最长回文子串 中等 字符串转换整数 (atoi) 中等 盛最多水的容器 中等 罗马数字转整数 简单 0014 最长...

    leetcode周赛难度-leetcode:我的leetcode代码

    leetcode 周赛难度力码 的代码参考。 当然,我也会每周更新一些关于这些问题的注释,但不是全部。 欢迎开 issue 讨论! 要求 Xcode C++ 11 问题 清单(链表) ID 标题 困难 解决方案 笔记 2 中等的 19 中等的 21 简单...

    leetcode周赛153-LeetCode-Contest:LeetCode周赛题解

    leetcode周赛153 LeetCode-Contest LeetCode 周赛题解 已完成比赛 周赛 比赛场次 【A】题 【B】题 【C】题 【D】题 1201 1202 1203 1207 1208 1209 1210 双周赛 比赛场次 【A】题 【B】题 【C】题 【D】题 1246 初始...

    leetcode周赛排名没了-rust4leetcode:使用Rust刷完leetcode

    leetcode周赛排名没了 定个小目标:用Java、Python、Go、Rust、C++、js六种语言把leetcode刷一遍 为什么要创建此repo? 为了自己。leetcode上好的讲解数不胜数,大佬的解法巧妙绝伦,再写题解给别人看那就是班门弄斧...

    leetcode周赛积分-Leetcode:通过GitHub记录Leetcode的过程

    周赛积分按 issue 记录 Leetcode 的流程 每周比赛 日期 11/10/2019 11/16/2019 11/17/2019 12/8/2019 12/15/2019 12/22/2019 数量 问题 等级 话题 日期 409 简单的 Hash Table 10/25/2019 290 简单的 Array Two ...

    leetcode周赛难度-Weekly-Leetcode-with-STCA:每周LC

    周赛难度每周-Leetcode-with-MS 业主:兰 时间:从 19.12.11 Week6 动态规划 指数 标题 解决方案 验收 困难 70 √ 45.6% 简单的 198 √ 41.5% 简单的 303 √ 40.8% 简单的 64 √ 49.7% 中等的 309 √ 45.2% 中等的 ...

    leetcode周赛奖品-Lemaj:Lemaj-提高编码技能和参加比赛的网站

    leetcode 周赛奖品Lemaj - 提高编码技能和参加比赛的网站 Development on Lemaj has just started. Everything is in flux Lemaj 是什么? Lemaj立志成为一个学习编程的网站,它每周都会举办比赛,任何人都可以参加...

    leetcode周赛难度-leetcode-learn::pencil2:在Scala中总结每周练习

    leetcode 周赛难度LeeCode-Study ======== 总结 Scala 每周练习(每周 5 个问题)。 参考 不。 标题 解决方案 困难 标签 地位 001 简单的 Mapping 完毕 002 中等的 LinkedList 完毕 003 中等的 Mapping 完毕 005 ...

    leetcode周赛得分3-mstcBlog:微博

    周赛是LeetCode举办的一种定期比赛,参赛者在限定时间内解决一系列问题,并根据解题质量和速度获得分数。 描述 "leetcode周赛得分3" 很简洁,表明这是作者参加的第三次LeetCode周赛的结果或者是相关记录。可能包含...

    leetcode周赛191-leetcode:一天一天起来

    【标题】"LeetCode周赛191-逐步提升算法能力" 在LeetCode的周赛191中,参赛者们面临了一系列挑战性的算法题目,旨在帮助他们提升编程技巧和解决复杂问题的能力。LeetCode是一个知名的在线编程平台,提供丰富的算法...

    (LeetCode 解题集之 JavaScript & TypeScript 版).zip

    Solutions collection of LeetCode submissions in JavaScript & TypeScript (LeetCode 解题集之 JavaScript & TypeScript 版).zip

    leetcode周赛积分-LEETCODE:leetcode的问题

    周赛积分LEETCODE 来自 Leetcode 的问题。 您可以找到有关算法和数据结构的一些详细信息。 数据结构 地图 问题编号 名称 语境 001 二和 350 两个数组的交集Ⅱ , 两个指针 简单的 015 三和 设置,地图, 中等的 3 无...

    leetcode周赛难度-leetcode:leetcode项目的问题解决进度

    周赛难度leetcode 这是用于跟踪我在项目中解决问题的进度的存储库。 在30_day_challenge文件夹中,我上传了我的解决方案和其他有趣的每月挑战代码。 在weekly_contest或biweekly_contest文件夹上传我的解决方案,我...

    leetcode周赛194-leetcode-contests:leetcode竞赛

    leetcode 周赛194 力码竞赛 固定 每周比赛 197: 每周比赛 196: 每周竞赛 195: 每周比赛 194: 每周竞赛 193:

    leetcode卡-leetcode-weekly-contest-186:第186届LeetCode周赛

    leetcode卡leetcode-weekly-contest-186 第 186 届 LeetCode 周赛 问题清单 拆分字符串后的最大分数 Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty...

    Leetcode:LeetCode解题代码

    《LeetCode解题代码——C++篇》 LeetCode是一个广受程序员喜爱的在线平台,它提供了大量的编程挑战,旨在帮助开发者提升算法和数据结构能力。这个资源包中包含的是用C++语言编写的LeetCode题目的解决方案。通过深入...

    我在leetcode上的解题记录。(C++版).zip

    【标题】"我在LeetCode上的解题记录"指的是作者在LeetCode这个在线编程平台上通过C++语言解决了一系列算法问题,并将这些解决方案整理成一个压缩包文件。LeetCode是一个热门的平台,它提供了一系列的编程挑战,旨在...

Global site tag (gtag.js) - Google Analytics