题意 维护矩阵区间和,区间修改操作。 思路 二维树状数组。 先挖坑,这里贴篇blog 代码 #include <cstdio>int n, m, a, b, c, d, delta;char op;int t[4][2100][2100];inline int lowbit(int x) {return x & -x;}void add(int x, int y, int val)
题目链接:传送门 题解: 类似于树状数组区间修改区间查询的操作搞一搞 不要开long long //by sdfzchy#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int inf=(1