摘要:
A:签到题 // Author: levil #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<int,int> pii; const int N = 105; const int M = 阅读全文
摘要:
带修改的莫队: 在普通莫队的基础上维护了一个修改的结构体。加上了一维时间戳。 对于查询操作,记录最近的修改位置。然后在查询操作中。 对于查询之后,还需要去维护一个修改操作,并且要维护对答案的影响。 这题有点卡常,还好我卡的好(逃 // Author: levil #include<bits/stdc 阅读全文