欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 美食 > 集合帖:前缀和及差分模板题 ← 一维及二维

集合帖:前缀和及差分模板题 ← 一维及二维

2025/1/21 18:05:49 来源:https://blog.csdn.net/hnjzsyjyj/article/details/145271839  浏览:    关键词:集合帖:前缀和及差分模板题 ← 一维及二维

【一维前缀和及一维差分知识点】
● 一维“前缀和数组”预处理过程:cin>>a[i], sum[i]=sum[i-1]+a[i]  或者  cin>>sum[i], sum[i]+=sum[i-1]   (1≤i≤n)
● 一维“区间和”计算过程:sum[y]-sum[x-1]      (y≥x)
● 长度为 k 的区间和的公式为:sum[i]-sum[i-k]
● 一维区间操作转端点操作 d[le]+=x,d[ri+1]-=x,可以高效地对区间 [le,ri] 内的每个元素都 +x。

(一)一维前缀和
题目来源:
https://www.acwing.com/problem/content/797/
代码来源:https://blog.csdn.net/hnjzsyjyj/article/details/144885387

#include <bits/stdc++.h>
using namespace std;const int maxn=1e5+5;
int a[maxn],s[maxn];int main() {int n,m;scanf("%d%d",&n,&m);for(int i=1; i<=n; i++) {scanf("%d",&a[i]);s[i]=s[i-1]+a[i];}while(m--) {int le,ri;scanf("%d%d",&le,&ri);printf("%d\n",s[ri]-s[le-1]);}return 0;
}/*
in:
5 3
2 1 3 6 4
1 2
1 3
2 4out:
3
6
10
*/

(二)一维差分
题目来源:https://www.acwing.com/problem/content/799/
代码来源:https://blog.csdn.net/hnjzsyjyj/article/details/139963345

#include <bits/stdc++.h>
using namespace std;const int N=1e5+5;
int a[N]; //Primitive array
int d[N]; //Difference arrayint main() {int n,m;cin>>n>>m;for(int i=1; i<=n; i++) { //i from 1cin>>a[i];d[i]=a[i]-a[i-1]; //Building a difference array}int le,ri,c;while(m--) {cin>>le>>ri>>c;d[le]+=c;d[ri+1]-=c;}for(int i=1; i<=n; i++) { //i from 1a[i]=d[i]+a[i-1];cout<<a[i]<<" ";}return 0;
}/*
in:
6 3
1 2 2 1 2 1
1 3 1
3 5 1
1 6 1out:
3 4 5 3 4 2
*/

【二维前缀和及二维差分知识点】
● 二维“前缀和数组”预处理过程:sum[i][j]=sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1]+a[i][j]
● 二维“区间和”计算过程:( sum[x2][y2] - sum[x2][y1-1] ) - ( sum[x1-1][y2] - sum[x1-1][y1-1] ) = sum[x2][y2] - sum[x2][y1-1] - sum[x1-1][y2] + sum[x1-1][y1-1]       (y2≥y1,x2≥x1)
● 二维区间操作转端点操作
若二维区域的左上角坐标为 (x1, y1),右下角坐标为 (x2, y2),则如下代码可高效实现对此二维区域内所有元素 +x 的操作。

d[x1][y1]+=x;
d[x1][y2+1]-=x;
d[x2+1][y1]-=x;
d[x2+1][y2+1]+=x;


(一)二维前缀和
题目来源:
https://www.acwing.com/problem/content/798/
代码来源:https://blog.csdn.net/hnjzsyjyj/article/details/144908502

#include <bits/stdc++.h>
using namespace std;const int maxn=1e3+5;
int a[maxn][maxn];
int s[maxn][maxn];int main() {int n,m,q;cin>>n>>m>>q;for(int i=1; i<=n; i++)for(int j=1; j<=m; j++) {scanf("%d",&a[i][j]);s[i][j]=s[i][j-1]+s[i-1][j]-s[i-1][j-1]+a[i][j];}while(q--) {int x1,y1,x2,y2;scanf("%d%d%d%d",&x1,&y1,&x2,&y2);printf("%d\n",s[x2][y2]-s[x2][y1-1]-s[x1-1][y2]+s[x1-1][y1-1]);}return 0;
}/*
in:
3 4 3
1 7 2 4
3 6 2 8
2 1 2 3
1 1 2 2
2 1 3 4
1 3 3 4out:
17
27
21
*/

(二)二维差分
题目来源:
https://www.acwing.com/problem/content/800/
代码来源:https://blog.csdn.net/hnjzsyjyj/article/details/139970246

#include <bits/stdc++.h>
using namespace std;const int maxn=1e3+5;
int a[maxn][maxn];
int d[maxn][maxn];
int n,m,q;int main() {cin>>n>>m>>q;for(int i=1; i<=n; i++) {for(int j=1; j<=m; j++) {cin>>a[i][j];}}for(int i=1; i<=n; i++) {for(int j=1; j<=m; j++) {d[i][j]=a[i][j]-a[i-1][j]-a[i][j-1]+a[i-1][j-1];}}while(q--) {int x1,y1,x2,y2,c;cin>>x1>>y1>>x2>>y2>>c;d[x1][y1]+=c;d[x1][y2+1]-=c;d[x2+1][y1]-=c;d[x2+1][y2+1]+=c;}for(int i=1; i<=n; i++) {for(int j=1; j<=m; j++) {a[i][j]=d[i][j]+a[i-1][j]+a[i][j-1]-a[i-1][j-1];}}for(int i=1; i<=n; i++) {for(int j=1; j<=m; j++) cout<<a[i][j]<<" ";cout<<endl;}return 0;
}/*
in:
3 4 3
1 2 2 1
3 2 2 1
1 1 1 1
1 1 2 2 1
1 3 2 3 2
3 1 3 4 1out:
2 3 4 1
4 3 4 1
2 2 2 2
*/



【一维前缀和及一维差分示例】  <--  洛谷 P5638:光骓者的荣耀
题目来源:https://www.luogu.com.cn/problem/P5638
代码来源:https://blog.csdn.net/hnjzsyjyj/article/details/145251582

#include <bits/stdc++.h>
using namespace std;typedef long long LL;
const int maxn=1e6+5;
LL s[maxn],d[maxn];
LL t;
int n,k;int main() {cin>>n>>k;for(int i=1; i<n; i++) {cin>>s[i];s[i]+=s[i-1];}for(int i=1; i<=n-k; i++) {t=max(t,s[i+k-1]-s[i-1]);}cout<<s[n-1]-t<<endl;return 0;
}/*
in:
4 1
1 2 3out:
3
*/

【二维前缀和及二维差分示例】  <--  洛谷 P3397:地毯
题目来源:https://www.luogu.com.cn/problem/P3397
代码来源:
https://blog.csdn.net/hnjzsyjyj/article/details/145268744

#include <bits/stdc++.h>
using namespace std;const int maxn=1e3+5;
int a[maxn][maxn];
int d[maxn][maxn];
int n,m;int main() {cin>>n>>m;while(m--) {int x1,y1,x2,y2;cin>>x1>>y1>>x2>>y2;for(int i=x1; i<=x2; i++) {d[i][y1]++;d[i][y2+1]--;}}for(int i=1; i<=n; i++) {for(int j=1; j<=n; j++) {a[i][j]=a[i][j-1]+d[i][j];cout<<a[i][j]<<" ";}cout<<endl;}return 0;
}/*
in:
5 3
2 2 3 3
3 3 5 5
1 2 1 4out:
0 1 1 1 0
0 1 1 0 0
0 1 2 1 1
0 0 1 1 1
0 0 1 1 1
*/




【参考文献】
https://blog.csdn.net/hnjzsyjyj/article/details/145251582
https://blog.csdn.net/hnjzsyjyj/article/details/145268744

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com