摘要: #include<iostream> #include<algorithm> #include<stdio.h> #include<string.h> using namespace std; const int maxx = 2e5+6; struct node{ int rt,l,r,val,pos,dis; node(){ l=r=val=dis=pos=0; } }tree[maxx]; 阅读全文
posted @ 2019-09-25 01:00 bluefly-hrbust 阅读(139) 评论(0) 推荐(0) 编辑