题目描述
凡凡开了一间宠物收养场。收养场提供两种服务:收养被主人遗弃的宠物和让新的主人领养这些宠物。
每个领养者都希望领养到自己满意的宠物,凡凡根据领养者的要求通过他自己发明的一个特殊的公式,得出该领养者希望领养的宠物的特点值a(a是一个正整数,a<2^31),而他也给每个处在收养场的宠物一个特点值。这样他就能够很方便的处理整个领养宠物的过程了,宠物收养场总是会有两种情况发生:被遗弃的宠物过多或者是想要收养宠物的人太多,而宠物太少。
被遗弃的宠物过多时,假若到来一个领养者,这个领养者希望领养的宠物的特点值为a,那么它将会领养一只目前未被领养的宠物中特点值最接近a的一只宠物。(任何两只宠物的特点值都不可能是相同的,任何两个领养者的希望领养宠物的特点值也不可能是一样的)如果有两只满足要求的宠物,即存在两只宠物他们的特点值分别为a-b和a+b,那么领养者将会领养特点值为a-b的那只宠物。
收养宠物的人过多,假若到来一只被收养的宠物,那么哪个领养者能够领养它呢?能够领养它的领养者,是那个希望被领养宠物的特点值最接近该宠物特点值的领养者,如果该宠物的特点值为a,存在两个领养者他们希望领养宠物的特点值分别为a-b和a+b,那么特点值为a-b的那个领养者将成功领养该宠物。
一个领养者领养了一个特点值为a的宠物,而它本身希望领养的宠物的特点值为b,那么这个领养者的不满意程度为abs(a-b)。
你得到了一年当中,领养者和被收养宠物到来收养所的情况,请你计算所有收养了宠物的领养者的不满意程度的总和。这一年初始时,收养所里面既没有宠物,也没有领养者。
输入输出格式
输入格式:第一行为一个正整数n,n<=80000,表示一年当中来到收养场的宠物和领养者的总数。接下来的n行,按到来时间的先后顺序描述了一年当中来到收养场的宠物和领养者的情况。每行有两个正整数a, b,其中a=0表示宠物,a=1表示领养者,b表示宠物的特点值或是领养者希望领养宠物的特点值。(同一时间呆在收养所中的,要么全是宠物,要么全是领养者,这些宠物和领养者的个数不会超过10000个)
输出格式:仅有一个正整数,表示一年当中所有收养了宠物的领养者的不满意程度的总和mod 1000000以后的结果。
输入输出样例
5 0 2 0 4 1 3 1 2 1 5
3 注:abs(3-2) + abs(2-4)=3, 最后一个领养者没有宠物可以领养。
练习平衡树板子...
维护一棵Splay。
记录一下当前的splay里装的是宠物还是人, 然后如果询问里的opt和当前状态不同,就查询前驱后继,比较差异,计算答案。
如果状态相同,就直接插入;
如下是Splay写法
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> using namespace std; #define inf 1e9 const int N = 80005; int fa[N], ch[N][2], val[N], siz[N]; int tot, root, now, n, top; const int mod = 1000000; int ans; inline void pushup(int x) { siz[x] = siz[ch[x][0]] + siz[ch[x][1]]; } inline void rotate(int x) { int y = fa[x], d = (ch[y][1] == x); fa[ ch[y][d] = ch[x][d^1] ] = y; ch[ fa[x] = fa[y] ][ ch[fa[y]][1] == y ] = x; fa[ ch[x][d ^ 1] = y ] = x; pushup(y), pushup(x); } inline void Splay(int x, int f) { while(fa[x] != f) { int y = fa[x], z = fa[y]; if (z != f) rotate( (ch[z][1] == y) == (ch[y][1] == x) ? y : x); rotate(x); } pushup(x); if (!f) root = x; } inline void Insert(int v) { int o = root, u = 0; while(o and val[o] != v) u = o, o = ch[o][val[o]<v]; o = ++tot; if (u) ch[u][val[u]<v] = o; siz[o] = 1, fa[o] = u, val[o] = v, ch[o][0] = ch[o][1] = 0; Splay(o, 0); } inline void Find(int x) { int o = root; if (!o) return; while(val[o] != x and ch[o][val[o]<x]) o = ch[o][val[o]<x]; Splay(o, 0); } inline int Next(int x, int d) { Find(x); int o = root; if ((val[o] > x and d) or (val[o] < x and !d)) return o; o = ch[o][d]; while(ch[o][d^1]) o = ch[o][d^1]; return o; } inline void Del(int x) { int lst = Next(x, 0), nxt = Next(x, 1); Splay(lst, 0), Splay(nxt, lst); int del = ch[nxt][0]; ch[nxt][0] = 0; } int main() { Insert(inf), Insert(-inf); scanf("%d", &n); for (int i = 1 ; i <= n ; i ++) { int opt, x; scanf("%d%d", &opt, &x); if (now == opt) { Insert(x); now = opt; top++; continue; } else if (top) { int lst = Next(x, 0), nxt = Next(x, 1); if (abs(val[lst] - x) <= abs(val[nxt] - x)) { Del(val[lst]); ans = ans + abs(val[lst] - x); ans %= mod; top--; } else { Del(val[nxt]); ans = ans + abs(val[nxt] - x); ans %= mod; top--; } } else { now ^= 1; Insert(x); top++; } } cout << ans % mod << endl; return 0; }