POJ 2828 Buy Tickets(单点更新)

题目链接:http://poj.org/problem?id=2828

对于第i个人的pos,可以看成在第i个人之前需要留的空位置数。
利用线段树可以确定每个人的最终位置。
那么对于每个人做一次查询,但需要 从后往前 查询。

代码如下。

#include <iostream>
#include <iomanip>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <queue>
#include <vector>
#include <stack>
#include <string>
#include <cstring>
#include <cassert>
using namespace std;

typedef long long ll;
const int maxn=222222;
const int INF=0x7fffffff;
const int mod=1e7+7;
#define LSON l, m, rt<<1
#define RSON m+1, r, rt<<1|1
#define ESP 1e-7

struct people {
    int pos, val;
}peo[maxn];

int arr[maxn<<2], put[maxn];

void pushup(int rt) {
    arr[rt]=arr[rt<<1]+arr[rt<<1|1];//每个节点存该区间剩余位置数
}

void build(int l, int r, int rt) {
    if(l==r) {
        arr[rt]=1;
        return ;
    }
    int m=(l+r)>>1;
    build(LSON);
    build(RSON);
    pushup(rt);
}

int query(int pos, int l, int r, int rt) {
    if(l==r) {
        arr[rt]--;
        return l;
    }
    int m=(l+r)>>1;
    int temp=pos<=arr[rt<<1]?query(pos, LSON):query(pos-arr[rt<<1], RSON);
    pushup(rt);//查询同时更新
    return temp;
}

int main() {
    int n;
    while(~scanf("%d", &n)) {
        build(1, n, 1);
        for(int i=0;i<n;i++) {
            scanf("%d%d", &peo[i].pos, &peo[i].val);
            peo[i].pos++;
        }
        for(int i=n-1;i>=0;i--)//逆序
            put[query(peo[i].pos, 1, n, 1)]=peo[i].val;
        for(int i=1;i<n;i++)
            printf("%d ", put[i]);
        printf("%d\n", put[n]);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值