程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 2852 (樹狀數組求第 k個 大於a 的數)

HDU 2852 (樹狀數組求第 k個 大於a 的數)

編輯:C++入門知識


題意:


三種操作


0 x: 向容器裡加入x;
1 x: 在容器內刪除x,不存在x則輸出“No Elment”

2 x y: 在容器中找到大於x的第y個數,沒有則輸出“Not Find”


題解: 樹狀數組


操作1: 直接add(x,1)
操作2: 查找sum(x)和sum(x-1),差值為0則不存在x,反之,add(x,-1)即可刪除一個x
操作3: 首先查找小於等於x的個數s,則找到大於x的第y個數相當於找到第s+y小數




#include   
#include   
#include   
#include  
#include 
#include   
#include  
#include  
#define M 100005  
#define INF 0x7ffffff 
#define LL __int64
using namespace std;  

int c[M];
int lowBit(int x)
{
	return x&(-x);
}

void update(int pos,int v)
{
	while(posmid)
				ans=mid;
		}
	}
	if(ans==M)
		printf("Not Find!\n");
	else printf("%d\n",ans);
}
int main()
{
	int n;
	while(~scanf("%d",&n))
	{
		int p,e,a,k;
		memset(c,0,sizeof(c));
		while(n--)
		{
			scanf("%d",&p);
			if(p==0)
			{
				scanf("%d",&e);
				update(e,1);
			}
			else if(p==1)
			{
				scanf("%d",&e);
				if(getSum(e)-getSum(e-1)==0)
					printf("No Elment!\n");
				else update(e,-1);
			}
			else 
			{
				scanf("%d%d",&a,&k);
				cal(a,k);
			}
		}
	}
	return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved