feat
feat - A new feature : 一个新功能
fix
fix - A bug fix : bug修复
docs
docs - Documentation only changes : 仅更改文档
style
style - Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) : 不影响代…
题目描述: 解题思路: 差分模板题。
题解:
#include<bits/stdc.h>
using namespace std;const int N 1e5 10;
int a[N], diff[N] ;//数组的大小不可能开到大于1e9int res(int n, int m)
{for(int i 1; i < n; i)cin >&g…