程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 線段樹 單點更新查詢 區間最大值 hdu 2795 Billboard

線段樹 單點更新查詢 區間最大值 hdu 2795 Billboard

編輯:C++入門知識

線段樹 單點更新查詢 區間最大值 hdu 2795 Billboard


題意:

有一塊h*w(1<=h,w<=10^9)的公告牌,需要在上面放n(n<=200000)個1*w[i]的公告,每個公告優先選可以放置的地方中最上的那行,同一行選最左的地方,依次輸出每個公告放置在哪行,如果不能放置,輸出-1。

可以把公告牌看作長為h的線段,構建一個線段樹,每個節點存儲區間的最大值,初始最大值為公告牌的寬度w。如果某區間的最大值大於當前公告的寬度,就可以放在該區間,由於公告優先放在上面,所以選區間的時候也應該先判斷左邊的區間可不可以,當在某個點放上公告後,該點的最大值應減去該公告的寬度。如果整個區間的最大值小於當前公告的寬度,就說明不能放置。

代碼:

 

#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

#define PB push_back
#define MP make_pair

#define REP(i,x,n) for(int i=x;i<(n);++i)
#define FOR(i,l,h) for(int i=(l);i<=(h);++i)
#define FORD(i,h,l) for(int i=(h);i>=(l);--i)
#define SZ(X) ((int)(X).size())
#define ALL(X) (X).begin(), (X).end()
#define RI(X) scanf("%d", &(X))
#define RII(X, Y) scanf("%d%d", &(X), &(Y))
#define RIII(X, Y, Z) scanf("%d%d%d", &(X), &(Y), &(Z))
#define DRI(X) int (X); scanf("%d", &X)
#define DRII(X, Y) int X, Y; scanf("%d%d", &X, &Y)
#define DRIII(X, Y, Z) int X, Y, Z; scanf("%d%d%d", &X, &Y, &Z)
#define OI(X) printf("%d",X);
#define RS(X) scanf("%s", (X))
#define MS0(X) memset((X), 0, sizeof((X)))
#define MS1(X) memset((X), -1, sizeof((X)))
#define LEN(X) strlen(X)
#define F first
#define S second
#define Swap(a, b) (a ^= b, b ^= a, a ^= b)
#define Dpoint  strcut node{int x,y}
#define cmpd int cmp(const int &a,const int &b){return a>b;}

 /*#ifdef HOME
    freopen("in.txt","r",stdin);
    #endif*/
const int MOD = 1e9+7;
typedef vector VI;
typedef vector VS;
typedef vector VD;
typedef long long LL;
typedef pair PII;
//#define HOME

int Scan()
{
	int res = 0, ch, flag = 0;

	if((ch = getchar()) == '-')				//判斷正負
		flag = 1;

	else if(ch >= '0' && ch <= '9')			//得到完整的數
		res = ch - '0';
	while((ch = getchar()) >= '0' && ch <= '9' )
		res = res * 10 + ch - '0';

	return flag ? -res : res;
}
/*----------------PLEASE-----DO-----NOT-----HACK-----ME--------------------*/



int h,w,n;
int Max[800000+10];
void pushup(int rt)
{
    Max[rt]=max(Max[rt<<1],Max[(rt<<1)+1]);
}
void build(int l,int r,int rt)
{Max[rt]=w;
if(l==r)
    return;
int m=(l+r)>>1;
build(l,m,rt<<1);
build(m+1,r,(rt<<1)+1);

}
int  query(int l,int r,int rt,int w)
{if(l==r)
{
    Max[rt]-=w;
    return l;
}
int m=(l+r)>>1;
int ans;
if(Max[rt<<1]>=w)
     ans=query(l,m,rt<<1,w);
else
     ans=query(m+1,r,(rt<<1)+1,w);
    pushup(rt);
    return ans;

}
int main()
{
    while(RIII(h,w,n)!=EOF)
{if(h>n)
h=n;
    build(1,h,1);
for(int i=0;i

 

 

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