摘要:
#define _CRT_SECURE_NO_WARNINGS #define ls cur << 1 #define rs cur << 1 | 1 #include <bits/stdc++.h> using namespace std; typedef long long ll; typede 阅读全文
摘要:
单调队列 滑动窗口 code #define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e6 + 100; int a[N], 阅读全文