分析 区间李超树板子题 代码 #include<bits/stdc++.h> using namespace std; #define db double const int inf = 1e8; const int N = 1e5; int n,m,is; struct node { int x1,x2; db y1,y2; node(int x1=-N,int x2=N,db y1=-1e8,db y2=-1e8):x1(x1),x2(x2),y1(y1),y2(y2) {} }; nod…