1351-统计有序矩阵中的负数(Count Negative Numbers in a Sorted Matrix) 原文链接: https://leetcode-cn.com/problems/count-negative-numbers-in-a-sorted-matrix 英文原文Given a m x n matrix grid which i 2021-12-03 二分查找数组矩阵 简单
1352-最后 K 个数的乘积(Product of the Last K Numbers) 原文链接: https://leetcode-cn.com/problems/product-of-the-last-k-numbers 英文原文Design an algorithm that accepts a stream of 2021-12-03 数学数据流数组设计队列 中等
1353-最多可以参加的会议数目(Maximum Number of Events That Can Be Attended) 原文链接: https://leetcode-cn.com/problems/maximum-number-of-events-that-can-be-attended 英文原文Given an array of events wher 2021-12-03 堆(优先队列)数组贪心 中等
1354-多次求和构造目标数组(Construct Target Array With Multiple Sums) 原文链接: https://leetcode-cn.com/problems/construct-target-array-with-multiple-sums 英文原文You are given an array target of 2021-12-03 堆(优先队列)数组 困难
1365-有多少小于当前数字的数字(How Many Numbers Are Smaller Than the Current Number) 原文链接: https://leetcode-cn.com/problems/how-many-numbers-are-smaller-than-the-current-number 英文原文Given the array nums, 2021-12-03 哈希表排序数组计数 简单
1368-使网格图至少有一条有效路径的最小代价(Minimum Cost to Make at Least One Valid Path in a Grid) 原文链接: https://leetcode-cn.com/problems/minimum-cost-to-make-at-least-one-valid-path-in-a-grid 英文原文Given a m x n grid. 2021-12-03 图堆(优先队列)广度优先搜索数组最短路矩阵 困难
1367-二叉树中的列表(Linked List in Binary Tree) 原文链接: https://leetcode-cn.com/problems/linked-list-in-binary-tree 英文原文Given a binary tree root and a linked list 2021-12-03 二叉树广度优先搜索树深度优先搜索链表 中等
1385-两个数组间的距离值(Find the Distance Value Between Two Arrays) 原文链接: https://leetcode-cn.com/problems/find-the-distance-value-between-two-arrays 英文原文Given two integer arrays arr1 an 2021-12-03 二分查找双指针排序数组 简单
1386-安排电影院座位(Cinema Seat Allocation) 原文链接: https://leetcode-cn.com/problems/cinema-seat-allocation 英文原文 A cinema has n rows of seats, numbered f 2021-12-03 位运算哈希表数组贪心 中等
1387-将整数按权重排序(Sort Integers by The Power Value) 原文链接: https://leetcode-cn.com/problems/sort-integers-by-the-power-value 英文原文The power of an integer x is defined as th 2021-12-03 动态规划排序记忆化搜索 中等