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

leetCode周赛81解题报告

 
阅读更多

比赛地址
https://leetcode.com/contest/weekly-contest-81

 

821. Shortest Distance to a Character

Given a string S and a character C, return an array of integers representing the shortest distance from the character C in the string.

Example 1:

Input: S = "loveleetcode", C = 'e'
Output: [3, 2, 1, 0, 1, 0, 0, 1, 2, 2, 1, 0]

 找出每个位置左边右边离C字母最近的距离,简单难度,两次遍历分别求出左边和右边最近距离即可。

/**
 * @param {string} S
 * @param {character} C
 * @return {number[]}
 */
var shortestToChar = function(S, C) {
    var r = new Array(S.length).fill(99999);
    var pos = -1;
    for (var i = S.length - 1; i >= 0; i--) {
        if (S[i] == C) {
            pos = i;
        }
        if (pos >= 0) {
            r[i] = pos - i;
        }
    }
    pos = -1;
    for (var i = 0; i < S.length; i++) {
        if (S[i] == C) {
            pos = i;
        }
        if (pos >= 0) {
            r[i] = Math.min(r[i], i - pos);
        }
    }
    return r;
};

 

 

 

 

822. Card Flipping Game

On a table are N cards, with a positive integer printed on the front and back of each card (possibly different).

We flip any number of cards, and after we choose one card. 

If the number X on the back of the chosen card is not on the front of any card, then this number X is good.

What is the smallest number that is good?  If no number is good, output 0.

Here, fronts[i] and backs[i] represent the number on the front and back of card i

A flip swaps the front and back numbers, so the value on the front is now on the back and vice versa.

Example:

 

Input: fronts = [1,2,4,4,7], backs = [1,3,4,1,3]
Output: 2
Explanation: If we flip the second card, the fronts are [1,3,4,4,7] and the backs are [1,2,4,1,3].
We choose the second card, which has number 2 on the back, and it isn't on the front of any card, so 2 is good.

一大片英文不大看得懂,纯属坑中国人的题,试错法试了四次看错误case猜题目意思、大致意思就是牌随便翻转,找出翻了之后最小的只有一张的牌。

 

/**
 * @param {number[]} fronts
 * @param {number[]} backs
 * @return {number}
 */
var flipgame = function(fronts, backs) {
    var f = new Array(2001).fill(false);
    for (var i = 0; i < fronts.length; i++) {
        if (fronts[i] == backs[i]) {
            f[fronts[i]] = true;
        }
    }
    var ans = 2001;
    for (var i = 0; i < fronts.length; i++) {
        if (fronts[i] !== backs[i]) {
            if (!f[fronts[i]]) {
                ans = Math.min(ans, fronts[i]);
            }
            if (!f[backs[i]]) {
                ans = Math.min(ans, backs[i]);
            }
        }
    } 
    return ans === 2001 ? 0 : ans;
};

 

 

 

 

820. Short Encoding of Words

Given a list of words, we may encode it by writing a reference string S and a list of indexes A.

For example, if the list of words is ["time", "me", "bell"], we can write it as S = "time#bell#" and indexes = [0, 2, 5].

Then for each index, we will recover the word by reading from the reference string from that index until we reach a "#" character.

What is the length of the shortest reference string S possible that encodes the given words?

Example:

Input: words = ["time", "me", "bell"]
Output: 10
Explanation: S = "time#bell#" and indexes = [0, 2, 5].

 

题意是压缩所有单词到尽量短的一句话中,使得所有单词都可以用一个位置表示。

思路是后缀树。Js其实有一种很方便的树的实现例如本题单词time,生成这样一个后缀树结构:{e:{m:{i:{t:{}}}}},当遇到下个单词如me时,从最外层开始找到{e:{m:{...}}}说明单词me已经被包含。具体代码如下:

 

/**
 * @param {string[]} words
 * @return {number}
 */
var minimumLengthEncoding = function(words) {
    words.sort((a,b)=>b.length-a.length);
    var ans = 0;
    var d = {};
    for (var i = 0; i < words.length; i++) {
        var find = true;
        var p = d;
        for (var j = words[i].length - 1; j >= 0; j--) {
            if (!p[words[i][j]]) {
                find = false;
                p[words[i][j]] = {};
            }
            p = p[words[i][j]];
        }
        if (!find) {
            ans += words[i].length + 1;
        }
    }
    return ans;
};

 

 

 

 

 

823. Binary Trees With Factors

Given an array of unique integers, each integer is strictly greater than 1.

We make a binary tree using these integers and each number may be used for any number of times.

Each non-leaf node's value should be equal to the product of the values of it's children.

How many binary trees can we make?  Return the answer modulo 10 ** 9 + 7.

Example 1:

Input: A = [2, 4]
Output: 3
Explanation: We can make these trees: [2], [4], [4, 2, 2]

Example 2:

Input: A = [2, 4, 5, 10]
Output: 7
Explanation: We can make these trees: [2], [4], [5], [10], [4, 2, 2], [10, 2, 5], [10, 5, 2].

题意是求满足这样规则的树的数量:非叶结点的值是两个孩子节点的乘积。

中等难度、就是计算结果要求对1000000007取模,马蛋又被坑了一次。

利用集合加速查找数字是否存在、键值对m记录中间结果。

/**
 * @param {number[]} A
 * @return {number}
 */
var numFactoredBinaryTrees = function(A) {
    var s = new Set(A);
    var m = {};
    var M = 1000000007;
    A.sort((a,b)=>a-b);
    for (var i = 0; i < A.length; i++) {
        var count = 1;
        for (var j = 0; j < i; j++) {
            if (A[i] % A[j] === 0) {
                var other = A[i] / A[j];
                if (s.has(other)) {
                    count = (count + (m[A[j]] % M) * (m[other] % M)) % M;
                }
            }
        }
        m[A[i]] = count;
    }
    var ans = 0;
    for (var k in m) {
        ans = (ans + m[k]) % M;
    }
    return ans;
};

 

 

分享到:
评论

相关推荐

    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周赛难度-leetcode-learn::pencil2:在Scala中总结每周练习

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

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

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

    leetcode周赛得分3-mstcBlog:微博

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

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

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

    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周赛

    周赛 问题清单 拆分字符串后的最大分数 Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty substrings (i.e. left substring and right substring). ...

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

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

    Leetcode:LeetCode解题代码

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

    leetcode周赛153-LeetCode:力扣解决方案

    leetcode周赛153 [TOC] 1. Background Solution of LeetCode,欢迎 fork & star; 鄙人水平有限,如有疏漏,还望诸位同行不吝赐教; 2. Algorithm .[]. 1-15; .[]. 3-剑指 Offer 48;==无需复习== .[]. 8- 剑指 ...

Global site tag (gtag.js) - Google Analytics