poj 2828 Buy Tickets

Buy Tickets
Time Limit: 4000MS   Memory Limit: 65536K
Total Submissions: 9404   Accepted: 4513

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

这道题目想法很重要,先建树,每个节点表示这个区间内的空的位置的数量,然后,从后往前读,Pos的值表示这个人前面有多少个空位,之所以从后往前读,是因为这样每个人的位置是确定的,以后就不用移动了,以后直接在树里面查找空位就可以了。

具体实现见代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstdlib>
 4 #include <cstring>
 5 #include <algorithm>
 6 using namespace std;
 7 #define lson l, m, rt<<1
 8 #define rson m+1, r, rt<<1|1
 9 const int maxn = 222222;
10 int tree[maxn<<2], val[maxn], pos[maxn], ans[maxn];
11 int id;
12 void build(int l, int r, int rt){
13   tree[rt] = r - l + 1;
14   if (l == r) {return;}
15   int m = (l + r) >> 1; build(lson); build(rson);
16 }
17 void update(int p, int l, int r, int rt){
18   tree[rt]--;
19   if (l == r){id = l-1; return;}
20   int m = (l + r) >> 1; if (tree[rt<<1] >= p) update(p, lson);
21   else {p -= tree[rt<<1]; update(p, rson);}
22 }
23 int main(void){
24   int n; 
25 #ifndef ONLINE_JUDGE
26   freopen("poj2828.in", "r", stdin);
27 #endif
28   while (~scanf("%d", &n)){
29     build(1, n, 1);
30     for (int i = 0; i < n; ++i) { scanf("%d%d", pos+i, val+i); }
31     for (int i = n - 1; i >= 0; --i){
32       update(pos[i] + 1, 1, n, 1);
33       ans[id] = val[i];
34     }
35     for (int i = 0; i < n; ++i){
36       if (i == 0) printf("%d", ans[i]);
37       else printf(" %d", ans[i]);
38     }
39     printf("\n");
40   }
41   return 0;
42 }

注意这种比较巧妙的想法。做这道题目的时候,我竟然把输入文件写错了,导致测试数据错误,然而,过分的是,我没看出来,然后就华丽丽地交了,然后就过了……糗大了……

原文地址:https://www.cnblogs.com/liuxueyang/p/2940456.html