CF85D:Sum of Medians(STL)

来源:互联网 发布:calendar什么软件 编辑:程序博客网 时间:2024/04/29 00:06

reference:WannaflyUnion Wechat
D. Sum of Medians
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In one well-known algorithm of finding the k-th order statistics we should divide all elements into groups of five consecutive elements and find the median of each five. A median is called the middle element of a sorted array (it's the third largest element for a group of five). To increase the algorithm's performance speed on a modern video card, you should be able to find a sum of medians in each five of the array.

sum of medians of a sorted k-element set S = {a1, a2, ..., ak}, where a1 < a2 < a3 < ... < ak, will be understood by as

The  operator stands for taking the remainder, that is  stands for the remainder of dividing x by y.

To organize exercise testing quickly calculating the sum of medians for a changing set was needed.

Input

The first line contains number n (1 ≤ n ≤ 105), the number of operations performed.

Then each of n lines contains the description of one of the three operations:

  • add x — add the element x to the set;
  • del x — delete the element x from the set;
  • sum — find the sum of medians of the set.

For any add x operation it is true that the element x is not included in the set directly before the operation.

For any del x operation it is true that the element x is included in the set directly before the operation.

All the numbers in the input are positive integers, not exceeding 109.

Output

For each operation sum print on the single line the sum of medians of the current set. If the set is empty, print 0.

Please, do not use the %lld specificator to read or write 64-bit integers in C++. It is preferred to use the cincout streams (also you may use the %I64d specificator).

Examples
input
6add 4add 5add 1add 2add 3sum
output
3
input
14add 1add 7add 2add 5sumadd 6add 8add 9add 3add 4add 10sumdel 1sum
output
51113
题意:

给出n个操作

.add x 表示向集合中添加x(添加x的时候保证x是第一次被添加入集合)

.del x 表示从集合中删除x (删除x的时候保证x存在于集合中)

.sum 将集合排序后,询问集合里面所有下标i % 5 = 3的元素的和(如果集合为空输出0)

思路:直接用vector做,插入和删除用二分,就不用排序了。

# include <iostream># include <cstdio># include <vector># include <algorithm>using namespace std;vector<int>v;int main(){    int n, t;    char s[10];    scanf("%d",&n);    while(n--)    {        scanf("%s",s);        if(s[0] == 's')        {            long long ans = 0;            for(int i=2; i<v.size(); i+=5)                ans += v[i];            printf("%I64d\n",ans);        }        else        {            scanf("%d",&t);            if(s[0] == 'a')                v.insert(lower_bound(v.begin(), v.end(), t), t);            else                v.erase(lower_bound(v.begin(), v.end(), t));        }    }    return 0;}


0 0
原创粉丝点击