摘要: 线段树(kuangbin本题链接) #include "bits/stdc++.h" using namespace std; const int MAXN = 50010; struct Node { int l, r; int sum; } segTree[MAXN * 4]; void bui 阅读全文
posted @ 2018-11-19 22:31 Jathon-cnblogs 阅读(195) 评论(0) 推荐(1) 编辑