摘要: 题目链接 理论上答案是可以超过int存储范围的,反正没有这种数据,我不管了 点击查看代码 #include <bits/stdc++.h> using namespace std; vector<int>a[200005]; int c[200005],w[200005]; int f[200005 阅读全文
posted @ 2024-07-28 23:32 D06 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 题目链接 用线段树维护原序列对应的差分数组,可以把区间修改简化为单点修改 点击查看代码 #include <bits/stdc++.h> using namespace std; int a[100005],n; int read1() { char cc=getchar(); while(!(cc 阅读全文
posted @ 2024-07-28 21:00 D06 阅读(10) 评论(0) 推荐(0) 编辑