1. 首页
  2. 数据库
  3. 其它
  4. 线段树解题报告

线段树解题报告

上传者: 2021-01-16 14:55:16上传 PDF文件 41.96KB 热度 13次
H Moving Points 题目链接:https://vjudge.net/contest/358745#problem/H 思路:树状数组维护,类似于树状数组求逆序对+思维(思维量很小) #include using namespace std; const int N = 2e5+9; typedef long long ll; struct node{ ll a,b; friend bool operator <(node a,node b){ return a.a<b.a; } }a[N]; ll b[N]; ll h[N]; l
用户评论