2022年4月24日
摘要: 2700 阅读全文
posted @ 2022-04-24 21:52 Hamine 阅读(147) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int n; int main(){ ios::sync_with_stdio(false);cin.tie(0); cin >> n; vector <int> a(n), f(n); for (int i 阅读全文
posted @ 2022-04-24 11:35 Hamine 阅读(13) 评论(0) 推荐(0) 编辑
摘要: luogu 模板: https://www.luogu.com.cn/problem/P3865 静态区间最大值查询 #include <bits/stdc++.h> using namespace std; using LL = long long; //mx[i][j] 表示从第 i 个位置开始 阅读全文
posted @ 2022-04-24 11:24 Hamine 阅读(14) 评论(0) 推荐(0) 编辑