<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Binary Search - 标签 - zwyyy456&#39;s blog</title>
        <link>https://doit.tellm.eu.org/zh/tags/binary-search/</link>
        <description>Binary Search - 标签 - zwyyy456&#39;s blog</description>
        <generator>Hugo -- gohugo.io</generator><language>zh</language><managingEditor>zwyyy456@hotmail.com (zwyyy456)</managingEditor>
            <webMaster>zwyyy456@hotmail.com (zwyyy456)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Tue, 17 Oct 2023 11:10:46 &#43;0800</lastBuildDate><atom:link href="https://doit.tellm.eu.org/zh/tags/binary-search/" rel="self" type="application/rss+xml" /><item>
    <title>1201. 丑数 III (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/1201.ugly-number-iii/</link>
    <pubDate>Tue, 17 Oct 2023 11:10:46 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/1201.ugly-number-iii/</guid>
    <description><![CDATA[1 问题描述1201. 丑数 III (Medium) 给你四个整数： n 、 a 、 b 、 c ，请你设计一个算法来找出第 n 个丑数。 丑数是可以被 a 或 b 或 c 整除的 正整数 。 示例 1： text 输]]></description>
</item><item>
    <title>287. 寻找重复数 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/287.find-the-duplicate-number/</link>
    <pubDate>Fri, 04 Aug 2023 10:59:11 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/287.find-the-duplicate-number/</guid>
    <description><![CDATA[1 问题描述287. 寻找重复数 (Medium) 给定一个包含 n + 1 个整数的数组 nums ，其数字都在 [1, n] 范围内（包括 1 和 n），可知至少存 在一个重复的整数。 假设 nums 只有 一]]></description>
</item><item>
    <title>354. 俄罗斯套娃信封问题 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/354.russian-doll-envelopes/</link>
    <pubDate>Fri, 23 Jun 2023 23:38:51 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/354.russian-doll-envelopes/</guid>
    <description><![CDATA[1 问题描述354. 俄罗斯套娃信封问题 (Hard) 给你一个二维整数数组 envelopes ，其中 envelopes[i] = [wᵢ, hᵢ] ，表示第 i 个信封的宽度和高度。 当另一个信封的宽度和高度都]]></description>
</item><item>
    <title>517. 礼盒的最大甜蜜度 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/2517.maximum-tastiness-of-candy-basket/</link>
    <pubDate>Thu, 01 Jun 2023 15:53:33 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/2517.maximum-tastiness-of-candy-basket/</guid>
    <description><![CDATA[1 问题描述2517. 礼盒的最大甜蜜度 (Medium) 给你一个正整数数组 price ，其中 price[i] 表示第 i 类糖 果的价格，另给你一个正整数 k 。 商店组合 k 类 不同 糖果打包成礼盒出]]></description>
</item><item>
    <title>二分答案</title>
    <link>https://doit.tellm.eu.org/zh/binary_search/</link>
    <pubDate>Thu, 01 Jun 2023 15:53:13 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/binary_search/</guid>
    <description><![CDATA[1 概述二分答案即利用二分查找来得到答案，一般情况下，左边界 $left$ 是 $0$ 或者 $1$；右边界 $right$ 则视题目条件而定，取一个很大的数，然后利用二分查找的思想]]></description>
</item><item>
    <title>2071.你可以安排的最多任务数目 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/2071.maximum-number-of-tasks-you-can-assign/</link>
    <pubDate>Wed, 22 Mar 2023 19:49:22 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/2071.maximum-number-of-tasks-you-can-assign/</guid>
    <description><![CDATA[1 问题描述2071. 你可以安排的最多任务数目 (Hard) 给你 n 个任务和 m 个工人。每个任务需要一定的力量值才能完成，需要的力量值保存在下标从 0 开始的整数]]></description>
</item><item>
    <title>2389.和有限的最长子序列 (Easy)</title>
    <link>https://doit.tellm.eu.org/zh/2389.longest-subsequence-with-limited-sum/</link>
    <pubDate>Fri, 17 Mar 2023 15:44:16 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/2389.longest-subsequence-with-limited-sum/</guid>
    <description><![CDATA[1 问题描述 和有限的最长子序列 (Easy) 给你一个长度为 n 的整数数组 nums ，和一个长度为 m 的整数数组 queries 。 返回一个长度为 m 的数组 answer，其中 answer[i] 是 nums 中元素]]></description>
</item><item>
    <title>778.水位上升的泳池中游泳 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/778.swim-in-rising-water/</link>
    <pubDate>Fri, 17 Mar 2023 15:29:17 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/778.swim-in-rising-water/</guid>
    <description><![CDATA[1 问题描述778. 水位上升的泳池中游泳 (Hard) 在一个 n x n 的整数矩阵 grid 中，每一个方格的值 grid[i][j] 表示位置 (i, j) 的平台高度。 当开始下雨时，在时间为 t 时，水池]]></description>
</item><item>
    <title>1631.最小体力消耗路径 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/1631.path-with-minimum-effort/</link>
    <pubDate>Thu, 16 Mar 2023 13:49:13 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/1631.path-with-minimum-effort/</guid>
    <description><![CDATA[1 问题描述1631. 最小体力消耗路径 (Medium) 你准备参加一场远足活动。给你一个二维 rows x columns 的地图 heights ，其中 heights[row][col] 表示格子 (row, col) 的高度。一开始你在最左上角的格子]]></description>
</item><item>
    <title>162.寻找峰值 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/162.find-peak-element/</link>
    <pubDate>Mon, 06 Mar 2023 19:39:10 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/162.find-peak-element/</guid>
    <description><![CDATA[1 问题描述162. 寻找峰值 (Medium) 峰值元素是指其值严格大于左右相邻值的元素。 给你一个整数数组 nums，找到峰值元素并返回其索引。数组可能包含多个峰]]></description>
</item></channel>
</rss>
