zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    swoole中退出、异常与错误的处理笔记
    centos6.9+lnmp1.5环境部署swoole记录
    linux递归查找文件内容并替换
    使用FFMPEG 压缩png图片 与tinypng压缩结果对比
    XAMPP安装PHP_GMP
    Yii2 输出图片相关
    (xampp)lampp 下配置https(ssl)自签双向认证以后 apache无法启动解决方案
    PHP正则表达式匹配俄文字符
    windows 7 php 7.1 命令行 执行 中文文件名 的PHP文件
    centos6.9 安装完xampp 7.2.0后,执行/opt/lampp/lampp报错
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/5568720.html
Copyright © 2011-2022 走看看