• POJ 2828 Buy Tickets


    Description

    Railway tickets were difficult to buy around the Lunar New Year in China, so we must get up early and join a long queue…

    The Lunar New Year was approaching, but unluckily the Little Cat still had schedules going here and there. Now, he had to travel by train to Mianyang, Sichuan Province for the winter camp selection of the national team of Olympiad in Informatics.

    It was one o’clock a.m. and dark outside. Chill wind from the northwest did not scare off the people in the queue. The cold night gave the Little Cat a shiver. Why not find a problem to think about? That was none the less better than freezing to death!

    People kept jumping the queue. Since it was too dark around, such moves would not be discovered even by the people adjacent to the queue-jumpers. “If every person in the queue is assigned an integral value and all the information about those who have jumped the queue and where they stand after queue-jumping is given, can I find out the final order of people in the queue?” Thought the Little Cat.

    Input

    There will be several test cases in the input. Each test case consists of N + 1 lines where N (1 ≤ N ≤ 200,000) is given in the first line of the test case. The next N lines contain the pairs of values Posi and Vali in the increasing order of i (1 ≤ iN). For each i, the ranges and meanings of Posi and Vali are as follows:

    • Posi ∈ [0, i − 1] — The i-th person came to the queue and stood right behind the Posi-th person in the queue. The booking office was considered the 0th person and the person at the front of the queue was considered the first person in the queue.
    • Vali ∈ [0, 32767] — The i-th person was assigned the value Vali.

    There no blank lines between test cases. Proceed to the end of input.

    Output

    For each test cases, output a single line of space-separated integers which are the values of people in the order they stand in the queue.

    Sample Input

    4
    0 77
    1 51
    1 33
    2 69
    4
    0 20523
    1 19243
    1 3890
    0 31492

    Sample Output

    77 33 69 51
    31492 20523 3890 19243

    Hint

    The figure below shows how the Little Cat found out the final order of people in the queue described in the first test case of the sample input.

     

    用线段树存储某位置之前的空位。

    数据倒着处理,先插入后来者到固定位置,然后再利用队列里的空位推算先来者的位置

     1 /**/
     2 #include<iostream>
     3 #include<cstdio>
     4 #include<cmath>
     5 #include<cstring>
     6 #include<algorithm>
     7 using namespace std;
     8 const int mxn=210000;
     9 struct node{
    10     int l,r;
    11     int sp;
    12 }t[mxn<<1];
    13 int id[mxn],val[mxn];
    14 int res[mxn];
    15 int n;
    16 void sp_update(int r){
    17     t[r].sp=t[r*2].sp+t[r*2+1].sp;
    18     return;
    19 } 
    20 void Build(int rt,int left,int right){
    21     t[rt].l=left;
    22     t[rt].r=right;
    23     if(left==right){t[rt].sp=1;return;}
    24     int mid=(left+right)/2;
    25     Build(rt*2,left,mid);
    26     Build(rt*2+1,mid+1,right);
    27     sp_update(rt);
    28     return;
    29 }
    30 void update(int rt,int l,int r,int x){//更新 
    31     if(l==r && r==x){
    32         t[rt].sp=0;
    33         return;
    34     }
    35     int mid=(l+r)/2;
    36     if(x<=mid)update(rt*2,l,mid,x);
    37     else update(rt*2+1,mid+1,r,x);
    38     sp_update(rt);
    39 }
    40 int query(int rt,int l,int r,int x){//查询 
    41     if(l==r)return l;
    42     int mid=(l+r)/2;
    43     int ans;
    44     if(x<=t[rt*2].sp){
    45         ans=query(rt*2,l,mid,x);
    46     }
    47     else ans=query(rt*2+1,mid+1,r,x-t[rt*2].sp);
    48     return ans;
    49 }
    50 int main(){
    51     int i,j;
    52     while(scanf("%d",&n)!=EOF){
    53         Build(1,1,n);
    54         for(i=1;i<=n;i++){
    55             scanf("%d%d",&id[i],&val[i]);
    56         }
    57         for(i=n;i>=1;i--){
    58             int pos=query(1,1,n,id[i]+1);//查询插入位置
    59             res[pos]=val[i];
    60             update(1,1,n,pos);
    61         }
    62         for(i=1;i<=n;i++)printf("%d ",res[i]);
    63         printf("
    ");
    64     }
    65     return 0;
    66 }
  • 相关阅读:
    机器不学习:如何处理数据中的「类别不平衡」?
    机器不学习:一种提升预测能力的方法-机器学习模型
    机器不学习:CNN 入门讲解1-什么是卷积
    机器不学习:浅析深度学习在实体识别和关系抽取中的应用
    机器不学习:用神经模块网络学习推理
    机器不学习:初识迁移学习
    机器不学习:一文彻底读懂智能对话系统
    跟随鼠标的div
    回到顶部的流畅滚动——scrollTop
    js学习小笔记
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/5568720.html
Copyright © 2020-2023  润新知