博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU4288:Coder(线段树单点更新版 && 暴力版)
阅读量:5137 次
发布时间:2019-06-13

本文共 4417 字,大约阅读时间需要 14 分钟。

Problem Description
In mathematics and computer science, an algorithm describes a set of procedures or instructions that define a procedure. The term has become increasing popular since the advent of cheap and reliable computers. Many companies now employ a single coder to write an algorithm that will replace many other employees. An added benefit to the employer is that the coder will also become redundant once their work is done.  
1
You are now the signle coder, and have been assigned a new task writing code, since your boss would like to replace many other employees (and you when you become redundant once your task is complete).
Your code should be able to complete a task to replace these employees who do nothing all day but eating: make the digest sum.
By saying “digest sum” we study some properties of data. For the sake of simplicity, our data is a set of integers. Your code should give response to following operations:
1. add x – add the element x to the set;
2. del x – remove the element x from the set;
3. sum – find the digest sum of the set. The digest sum should be understood by
where the set S is written as {a
1, a
2, ... , a
k} satisfying a
1  < a
2  < a
3  < ... < a
k  
Can you complete this task (and be then fired)?
------------------------------------------------------------------------------
1  See http://uncyclopedia.wikia.com/wiki/Algorithm
 

 

Input
There’re several test cases.
In each test case, the first line contains one integer N ( 1 <= N <= 10
5  ), the number of operations to process.
Then following is n lines, each one containing one of three operations: “add x” or “del x” or “sum”.
You may assume that 1 <= x <= 10
9.
Please see the sample for detailed format.
For any “add x” it is guaranteed that x is not currently in the set just before this operation.
For any “del x” it is guaranteed that x must currently be in the set just before this operation.
Please process until EOF (End Of File).
 

 

Output
For each operation “sum” please print one line containing exactly one integer denoting the digest sum of the current set. Print 0 if the set is empty.
 

 

Sample Input
9 add 1 add 2 add 3 add 4 add 5 sum add 6 del 3 sum 6 add 1 add 3 add 5 add 7 add 9 sum
 

 

Sample Output
3 4 5
Hint
C++ maybe run faster than G++ in this problem.

 

思路:这道题很明显是线段树的单点更新区间求和的问题,因为要求的是对5取余为3的所有数的和,我们可以将对5取余的5种情况进行离散化,而且这道题暴力也能过,不过时间几乎是踩线的。

 

先来暴力代码,这是老板大神的做法,真心碉堡了,暴力的精华在于要保持数组的有序性,只是时间比较长

#include 
#include
#include
using namespace std;int n;int a[100005],len;char str[10];__int64 sum;int main(){ int i,j,k; while(~scanf("%d",&n)) { len = 0; while(n--) { scanf("%s",str); if(!strcmp(str,"add")) { scanf("%d",&k); for(i = len++; i>0; i--)//保持有序的插入 { if(a[i-1]>k) a[i] = a[i-1]; else break; } a[i] = k; } else if(!strcmp(str,"del")) { scanf("%d",&k); for(i = 0; i

 

 

然后是线段树的,时间方面大大减少了

#include 
#include
#include
using namespace std;const int maxn = 500000+10;int n,len,flag;char str[maxn][10];int num[maxn],s[maxn];struct node{ int l,r,cnt; __int64 sum[5];//sum[i]保存与5模的各组和} a[maxn<<2];int bin(int k){ int l = 0,r = len-1; while(l<=r) { int mid = (l+r)>>1; if(s[mid]
k) r = mid-1; else return mid; }}void init(int l,int r,int i){ a[i].l = l; a[i].r = r; a[i].cnt = 0; memset(a[i].sum,0,sizeof(a[i].sum)); if(l!=r) { int mid = (l+r)>>1; init(l,mid,2*i); init(mid+1,r,2*i+1); }}void add(int x){ for(int i = 0; i<5; i++) a[x].sum[i] = a[x*2].sum[i]+a[x*2+1].sum[((i-a[x*2].cnt)%5+5)%5];//这个区间的和是左右子树同样余数的相加和,右子树要用序号减去左子树的个数对5取模后为了保持正数所以要+5再取模,所以是(i-a[x*2].cnt)%5+5}void insert(int i,int pos,int m){ a[i].cnt+=2*flag-1;//区间内有几个数字 if(a[i].l == a[i].r) { a[i].sum[0] = flag*m;//删除则此位清0,add则进行更新 return; } int mid = (a[i].l+a[i].r)>>1; if(pos<=mid) insert(2*i,pos,m); else insert(2*i+1,pos,m); add(i);}int main(){ int i,pos; while(~scanf("%d",&n)) { len = 0; for(i = 0; i

 

 

 

 

转载于:https://www.cnblogs.com/james1207/p/3400296.html

你可能感兴趣的文章
LeetCode【709. 转换成小写字母】
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
【题解】青蛙的约会
查看>>
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
安装 Express
查看>>
存储(硬件方面的一些基本术语)
查看>>
观察者模式
查看>>
Weka中数据挖掘与机器学习系列之基本概念(三)
查看>>
leetcode-Sort List
查看>>
中文词频统计
查看>>
Java泛型的基本使用
查看>>
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>