LeetCode - 周赛
IDrandom
菜菜菜
展开
-
[LeetCode 1351~1354][周赛]周赛176题解
这场周赛还是有点意思的,没有那么水,大概hard有cf div2 D的感觉1351. 统计有序矩阵中的负数题目链接第一种:二分static const auto io_speed_up = [](){ ios::sync_with_stdio(false); cin.tie(0); return 0;}();class Solution {public: ...原创 2020-03-05 03:36:03 · 260 阅读 · 0 评论 -
[LeetCode 1356~1359][周赛]双周赛20题解
根据数字二进制下 1 的数目排序题目链接static const auto io_speed_up = [](){ ios::sync_with_stdio(false); cin.tie(0); return 0;}();class Solution {public: int cnt[10010]; vector<int> sor...原创 2020-03-04 01:46:47 · 215 阅读 · 0 评论 -
[LeetCode 1360~1363][周赛]周赛177题解
1360.日期之间隔几天题目链接static const auto io_speed_up = [](){ ios::sync_with_stdio(false); cin.tie(0); return 0;}();class Solution {public: int nleap[13]={0, 31, 28, 31, 30, 31, 30, 31, 3...原创 2020-03-02 17:50:23 · 260 阅读 · 0 评论 -
[LeetCode 1365~1368][周赛]周赛178题解
5344.有多少小于当前数字的数字题目链接static const auto io_speed_up = [](){ ios::sync_with_stdio(false); cin.tie(0); return 0;}();class Solution {public: vector<int> smallerNumbersThanCurren...原创 2020-03-01 14:38:16 · 272 阅读 · 0 评论