首页 > 代码库 > 【BZOJ】1588: [HNOI2002]营业额统计
【BZOJ】1588: [HNOI2002]营业额统计
【算法】平衡树(treap)||双向链表
【题解】
#include<cstdio> #include<algorithm> #include<ctime> using namespace std; const int maxn=100010,inf=0x3f3f3f3f; int n,sum,ans,sz,root; struct cyc{int l,r,rnd,num;}t[maxn]; void insert(int &k,int x) { if(k==0) { k=++sz; t[k].rnd=rand(); t[k].num=x; return; } ans=min(ans,abs(t[k].num-x)); if(x==t[k].num)return; if(x<t[k].num)insert(t[k].l,x); else insert(t[k].r,x); } int main() { scanf("%d",&n); int x; for(int i=1;i<=n;i++) { ans=inf; scanf("%d",&x); insert(root,x); if(i==1)sum+=x; else sum+=ans; } printf("%d",sum); return 0; }
【BZOJ】1588: [HNOI2002]营业额统计
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。