守re
守re
全部文章
分类
归档
标签
去牛客网
登录
/
注册
守re的博客
全部文章
(共4篇)
题解 | #单调栈结构(进阶)#
#include <bits/stdc++.h> using namespace std; #define endl '\n' const int MAXN = 1000001; int arr[MAXN]; int st[MAXN]; int ans[MAXN][2]; int n,...
2024-11-18
1
12
题解 | #机器人跳跃问题#
#include <bits/stdc++.h> using namespace std; #define endl '\n' const int MAXN = 100001; int arr[MAXN]; int n; bool f(int energe, int max){ ...
2024-11-14
1
11
题解 | #设计有setAll功能的哈希表#
#include <bits/stdc++.h> using namespace std; unordered_map<int,vector<int>> Map; int SetAllValue = 0,SetAllTime = -1,cnt = 0; voi...
2024-10-13
0
26
题解 | #线段重合#
#include <iostream> #include <vector> #include <queue> #include <algorithm> #include <iterator> #include <queue> ...
2024-09-28
1
45