add: 220204-CN

This commit is contained in:
Lam Haoyin 2022-02-04 11:37:32 +08:00
parent 3d5095d75e
commit 75dec4ff64
No known key found for this signature in database
GPG Key ID: 8C089CB1A2B7544F
3 changed files with 29 additions and 1 deletions

23
2202/220204-CN.cpp Normal file
View File

@ -0,0 +1,23 @@
#include <vector>
#include <iostream>
/**
* 1725. Number Of Rectangles That Can Form The Largest Square
* You are given an array rectangles where rectangles[i] = [li, wi] represents the ith rectangle of length li and width wi.
* You can cut the ith rectangle to form a square with a side length of k if both k <= li and k <= wi. For example, if you have a rectangle [4,6], you can cut it to get a square with a side length of at most 4.
* Let maxLen be the side length of the largest square you can obtain from any of the given rectangles.
* Return the number of rectangles that can make a square with a side length of maxLen.
*/
class Solution {
public:
static int countGoodRectangles(const std::vector<std::vector<int>>& rectangles) {
auto it = std::max_element(rectangles.begin(), rectangles.end(), [](const std::vector<int>& x, const std::vector<int>& y) { return std::min(x[0], x[1]) < std::min(y[0], y[1]); });
return std::count_if(rectangles.begin(), rectangles.end(), [&it](const std::vector<int>& x) { return std::min(x[0], x[1]) >= std::min(it->front(), it->back()); });
}
};
int main() {
std::cout << Solution::countGoodRectangles({{5,8},{3,9},{5,12},{16,5}});
return 0;
}

View File

@ -2,6 +2,11 @@
#include <unordered_map> #include <unordered_map>
#include <iostream> #include <iostream>
/**
* 525. Contiguous Array
* Given a binary array nums, return the maximum length of a contiguous subarray with an equal number of 0 and 1.
*/
class Solution { class Solution {
public: public:
static int findMaxLength(const std::vector<int>& nums) { static int findMaxLength(const std::vector<int>& nums) {

View File

@ -3,4 +3,4 @@ PROJECT(2202)
SET(CMAKE_CXX_STANDARD 23) SET(CMAKE_CXX_STANDARD 23)
ADD_EXECUTABLE(2202 220204.cpp) ADD_EXECUTABLE(2202 220204-CN.cpp)