博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2828 Buy Tickets
阅读量:6708 次
发布时间:2019-06-25

本文共 3851 字,大约阅读时间需要 12 分钟。

 

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

40 771 511 332 6940 205231 192431 38900 31492

Sample Output

77 33 69 5131492 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
3 #include
4 #include
5 #include
6 #include
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("\n");64 }65 return 0;66 }

 

转载于:https://www.cnblogs.com/SilverNebula/p/5568720.html

你可能感兴趣的文章
Android ViewDragHelper完全解析 自定义ViewGroup神器
查看>>
mysql简单优化思路
查看>>
tomcat并发优化之三种接收处理请求方式(BIO、NIO、APR)介绍
查看>>
归并排序的实现
查看>>
[日常] C语言中的字符数组和字符串
查看>>
from disk cache 与 from memory cache
查看>>
应用图片加载服务与第三方实现库的解耦
查看>>
高并发的核心技术-幂等的实现方案
查看>>
微波炉炖蛋
查看>>
C#调用C/C++ DLL 参数传递和回调函数的总结
查看>>
非spring组件servlet、filter、interceptor中注入spring bean
查看>>
SQL Server中SELECT会真的阻塞SELECT吗?
查看>>
class path and classloader
查看>>
文字检测与识别 资源
查看>>
外包筛选心得
查看>>
Warning: skipping non-radio button in group
查看>>
dotnet检测类型是否为泛型
查看>>
Android 悬浮窗权限校验
查看>>
使用CefSharp在.Net程序中嵌入Chrome浏览器(九)——性能问题
查看>>
mysql 创建数据库 并设置utf8格式
查看>>