摘要:
吉司机线段树用于维护区间[l,r]对x取最小值,区间查询最小值和区间求和. #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e6+10; struct node{ int l,r; 阅读全文
摘要:
这题实在把我心态搞崩了 WA了一万发 错误答案吧先留着吧,以后补,今天实在没心情补了 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; const int N 阅读全文