第三届先进传感与智能制造国际会议(The 3rd International Conference on Advanced Sensing, Intelligent Manufacturing),由江汉大学、西安交通大学和山东大学主办,由江西省机械工程学会、东华理工大学机械与电子工程学院等联合协…
解决的问题:
数组区间查询最大值和最小值对于解决数组的树状数组的区间修改 ------- 线段树倍增思想 核心代码:
#include<bits/stdc.h>
using namespace std;
const int N1e5;
int num[N];
int f[N][N];
int main(){int n;cin>>n;//输入默…