POJ 2828 Buy Tickets (线段树,逆序遍历)

Buy Tickets

Time Limit: 4000MS Memory Limit: 65536K
Total Submissions: 13017 Accepted: 6449

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 ≤ i ≤ N). 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.

Source

 
题目的意思就是给定N个插队的顺序,求最后队伍的排序
看了下题目给的数据20W,链表(寻址)和数组(数组移动)会超时。
看了题解才知道用线段树。线段树可以精确查找到位置。
读入插队顺序的时候如果从前往后读的话,每次插入后,有的人的当前位置会改变。
所以采用从后往前读的方法
因为因为最后一个人的位置是固定的,所以从后往前排,每次排的那个人的位置就固定了。
拿样例分析一下:
第一次在第0位插:77
第二次在第一位插51:77 51
第三次在第一位插33:77 33 51
第四次在第二位插69:77 33 69 51
 
逆序的话:
第一次在前面还有2个空位的地方插69:_ _ 69 _
第二次在前面还有1个空位的地方插33:_ 33 69 _
第三次在前面还有1个空位的地方插51:_ 33 69 51
第四次在前面还有0个空位的地方插77:77 33 69 51
不过这道题目的想法很重要,每个节点表示这个区间内的空的位置的数量,从后往前读,pos的值表示这个人前面有多少个空位,然后在树里面查找空位。
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<stdlib.h>
 4 #include<algorithm>
 5 using namespace std;
 6 const int MAXN=200000+5;
 7 struct node
 8 {
 9     int pos;
10     int val;
11     int l,r;
12     int mid()
13     {
14         return (l+r)/2;
15     }
16 }a[MAXN*4];
17 
18 struct input
19 {
20     int pos;
21     int val;
22 }num[MAXN];
23 
24 int ans[MAXN],cnt=1;
25 
26 void btree(int l,int r,int step)
27 {
28     a[step].l=l;
29     a[step].r=r;
30     if(l==r)
31     {
32         a[step].pos=1;
33         return ;
34     }
35     int mid=a[step].mid();
36     btree(l,mid,step*2);
37     btree(mid+1,r,step*2+1);
38     a[step].pos=a[step*2].pos+a[step*2+1].pos;
39 }
40 
41 void ptree(int step,int pos,int val)
42 {
43     if(a[step].l==a[step].r)
44     {
45         a[step].val=val;
46         a[step].pos=0;
47         return ;
48     }
49     if(a[step*2].pos>pos)
50         ptree(step*2,pos,val);
51     else
52         ptree(step*2+1,pos-a[step*2].pos,val);
53     a[step].pos=a[step*2].pos+a[step*2+1].pos;
54 }
55 
56 void fintree(int step)
57 {
58     if(a[step].l==a[step].r)
59     {
60         ans[cnt++]=a[step].val;
61         return ;
62     }
63     fintree(step*2);
64     fintree(step*2+1);
65 }
66 
67 int main()
68 {
69     int n;
70     while(scanf("%d",&n)!=EOF)
71     {
72         for(int i=1;i<=n;i++)
73             scanf("%d %d",&num[i].pos,&num[i].val);
74         btree(1,n,1);
75         for(int i=n;i>=1;i--)
76             ptree(1,num[i].pos,num[i].val);
77         cnt=1;
78         fintree(1);
79         for(int i=1;i<n;i++)
80             printf("%d ",ans[i]);
81         printf("%d\n",ans[n]);
82     }
83     return 0;
84 }
View Code

代码跑起来有三千七百多秒,还要再优化一下。

转载于:https://www.cnblogs.com/clliff/p/3900887.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值