【POJ1442】【Treap】Black Box


Description

Our Black Box represents a primitive database. It can save an integer array and has a special i variable. At the initial moment Black Box is empty and i equals 0. This Black Box processes a sequence of commands (transactions). There are two types of transactions:

ADD (x): put element x into Black Box; 
GET: increase i by 1 and give an i-minimum out of all integers containing in the Black Box. Keep in mind that i-minimum is a number located at i-th place after Black Box elements sorting by non- descending.

Let us examine a possible sequence of 11 transactions:

Example 1

N Transaction i Black Box contents after transaction Answer
      (elements are arranged by non-descending)
1 ADD(3)      0 3
2 GET         1 3                                    3
3 ADD(1)      1 1, 3
4 GET         2 1, 3                                 3
5 ADD(-4)     2 -4, 1, 3
6 ADD(2)      2 -4, 1, 2, 3
7 ADD(8)      2 -4, 1, 2, 3, 8
8 ADD(-1000)  2 -1000, -4, 1, 2, 3, 8
9 GET         3 -1000, -4, 1, 2, 3, 8                1
10 GET        4 -1000, -4, 1, 2, 3, 8                2
11 ADD(2)     4 -1000, -4, 1, 2, 2, 3, 8   

It is required to work out an efficient algorithm which treats a given sequence of transactions. The maximum number of ADD and GET transactions: 30000 of each type.

Let us describe the sequence of transactions by two integer arrays:

1. A(1), A(2), ..., A(M): a sequence of elements which are being included into Black Box. A values are integers not exceeding 2 000 000 000 by their absolute value, M <= 30000. For the Example we have A=(3, 1, -4, 2, 8, -1000, 2).

2. u(1), u(2), ..., u(N): a sequence setting a number of elements which are being included into Black Box at the moment of first, second, ... and N-transaction GET. For the Example we have u=(1, 2, 6, 6).

The Black Box algorithm supposes that natural number sequence u(1), u(2), ..., u(N) is sorted in non-descending order, N <= M and for each p (1 <= p <= N) an inequality p <= u(p) <= M is valid. It follows from the fact that for the p-element of our u sequence we perform a GET transaction giving p-minimum number from our A(1), A(2), ..., A(u(p)) sequence.

Input

Input contains (in given order): M, N, A(1), A(2), ..., A(M), u(1), u(2), ..., u(N). All numbers are divided by spaces and (or) carriage return characters.

Output

Write to the output Black Box answers sequence for a given sequence of transactions, one number each line.

Sample Input

7 4
3 1 -4 2 8 -1000 2
1 2 6 6

Sample Output

3
3
1
2

Source

Northeastern Europe 1996

【分析】

练下手而已,没什么。

  1 #include <iostream>
  2 #include <cstdio>
  3 #include <algorithm>
  4 #include <cstring>
  5 #include <vector>
  6 #include <utility>
  7 #include <iomanip>
  8 #include <string>
  9 #include <cmath>
 10 #include <queue>
 11 #include <assert.h>
 12 #include <map>
 13
 14 const int N = 30000 + 10;
 15 const int SIZE = 250;//块状链表的大小
 16 const int M = 50000 + 5;
 17 using namespace std;
 18 struct TREAP{
 19        struct Node{
 20               int fix, size;
 21               int val;
 22               Node *ch[2];
 23        }mem[30000 + 10], *root;
 24        int tot;
 25        //大随机
 26        int BIG_RAND(){return (rand() * RAND_MAX + rand());}
 27        Node *NEW(){
 28             Node *p = &mem[tot++];
 29             p->fix = BIG_RAND();
 30             p->val = 0;
 31             p->size = 1;
 32             p->ch[0] = p->ch[1] = NULL;
 33             return p;
 34        }
 35        //将t的d节点换到t
 36        void rotate(Node *&t, int d){
 37             Node *p = t->ch[d];
 38             t->ch[d] = p->ch[d ^ 1];
 39             p->ch[d ^ 1] = t;
 40             t->size = 1;
 41             if (t->ch[0] != NULL) t->size += t->ch[0]->size;
 42             if (t->ch[1] != NULL) t->size += t->ch[1]->size;
 43             t = p;
 44             t->size = 1;
 45             if (t->ch[0] != NULL) t->size += t->ch[0]->size;
 46             if (t->ch[1] != NULL) t->size += t->ch[1]->size;
 47             return;
 48        }
 49        void insert(Node *&t, int val){
 50             //插入
 51             if (t == NULL){
 52                t = NEW();
 53                t->val = val;
 54                return;
 55             }
 56             //大的在右边,小的在左边
 57             int dir = (val >= t->val);
 58             insert(t->ch[dir], val);
 59             //维护最大堆的性质
 60             if (t->ch[dir]->fix > t->fix) rotate(t, dir);
 61             t->size = 1;
 62             if (t->ch[0] != NULL) t->size += t->ch[0]->size;
 63             if (t->ch[1] != NULL) t->size += t->ch[1]->size;
 64        }
 65        //在t的子树中找到第k小的值
 66        int find(Node *t, int k){
 67            if (t->size == 1) return t->val;
 68            int l = 0;//t的左子树中有多少值
 69            if (t->ch[0] != NULL) l += t->ch[0]->size;
 70            if (k == (l + 1)) return t->val;
 71            if (k <= l) return find(t->ch[0], k);
 72            else return find(t->ch[1], k - (l + 1));
 73        }
 74 }treap;
 75 typedef long long ll;
 76 int have[N];//have为1则在这个地方GET
 77 int data[N], m, n;
 78
 79 void init(){
 80      treap.root = NULL;
 81      treap.tot = 0;
 82      memset(have, 0, sizeof(have));
 83      scanf("%d%d", &m, &n);
 84      for (int i = 1; i <= m; i++) scanf("%d", &data[i]);
 85      for (int i = 1; i <= n; i++){
 86          int x;
 87          scanf("%d", &x);
 88          have[x]++;
 89      }
 90 }
 91 void work(){
 92      int pos = 0;//代表要获得的位置
 93      for (int i = 1; i <= m; i++){
 94          treap.insert(treap.root, data[i]);
 95          //printf("%d", treap.root->size);
 96          while (have[i]){
 97             pos++;
 98             printf("%d\n", treap.find(treap.root, pos));
 99             have[i]--;
100          }
101      }
102
103 }
104
105 int main(){
106     int T;
107     #ifdef LOCAL
108     freopen("data.txt", "r", stdin);
109     freopen("out.txt", "w", stdout);
110     #endif
111     init();
112     work();
113     return 0;
114 }

时间: 2024-09-29 20:31:15

【POJ1442】【Treap】Black Box的相关文章

【DFS】【拓扑排序】【动态规划】Gym - 100642A - Babs&#39; Box Boutique

给你10个箱子,有长宽高,每个箱子你可以决定哪个面朝上摆.把它们摞在一起,边必须平行,上面的不能突出来,问你最多摆几个箱子. 3^10枚举箱子用哪个面.然后按长为第一关键字,宽为第二关键字,从大到小排序. 如果前面的宽大于等于后面的宽,就连接一条边. 形成一张DAG,拓扑排序后跑最长路即可. #include<cstdio> #include<cstring> #include<queue> #include<algorithm> using namespa

【Qt5开发及实例】25、实现代理的功能

实现代理的功能 在Qt里面也有MVC,那就是视图,模型,代理,后面我们再开一章,好好来学习一下Qt的MVC吧! main.cpp /** * 书本:[Qt5开发及实例] * 功能:实现代理的功能 * 文件:main.cpp * 时间:2015年1月29日20:53:04 * 作者:cutter_point */ #include <QApplication> #include <QStandardItemModel> #include <QTableView> //#i

【程序员小助手】Emacs,最强编辑器,没有之一

内容简介 1.Emacs简介 2.Emacs三个平台的安装与配置 3.自动补全插件 4.小编的Emacs配置文件 5.常用快捷方式 6.和版本控制系统的配合(以SVN为例) [程序员小助手]系列 在这个系列文章中(不定期更新),小编会把这些年(也没几年)的编程学习和工作中使用到的个人感觉非常好的软件推荐给大家,希望能够共享美好资源,使大家提高编程和办事效率. Emacs,最强编辑器,没有之一 小编知道,此标题一出,肯定会遭受广大群众“诟病”,说不好还会被其他编辑器的粉丝暗地里“干掉”. 比如,V

【Qt5开发及实例】8、各种对话框!!

1.标准文件对话框 就是点击这个按钮就会打开文件的对话框 具体的实现是: 头文件dialog.h: #include <QDialog> #include <QLineEdit> #include <QGridLayout> //网格布局 #include <QPushButton> #include <iostream> #include "inputdlg.h" #include "msgboxdlg.h&quo

【转】【C#】C#重绘windows窗体标题栏和边框

摘要 windows桌面应用程序都有标准的标题栏和边框,大部分程序也默认使用这些样式,一些对视觉效果要求较高的程序,如QQ, MSN,迅雷等聊天工具的样式则与传统的windows程序大不相同,其中迅雷还将他们的BOLT界面引擎开放,使得大家也可以创建类似迅雷一样的界面.那么这些软件的界面是怎样实现的呢,使用C#是否也可以实现类似界面? 重绘方式 常见的自定义标题栏和边框的方式有两种,一种是隐藏标题栏和边框(称为非客户区),然后在客户区(可以放置控件的空间)使用一些常用的控件和图片来表示边框,这种

【D3 API 中文手册】提交记录

[D3 API 中文手册]提交记录 声明:本文仅供学习所用,未经作者允许严禁转载和演绎 <D3 API 中文手册>是D3官方API文档的中文翻译.始于2014-3-23日,基于VisualCrew小组的六次协作任务之上,目前已经大致翻译完毕,将陆续向官网提交D3 API 中文版. 本文主要内容有: 列举初版翻译/校对人员列表 记录中文翻译的官网提交情况 提供校对联系方式 提供D3 API简版翻译 翻译/校对人员列表 翻译人员列表 API项目 文档页数 单词数 翻译 校对 core.select

【翻译自mos文章】oracle linux 和外部存储系统 的关系

oracle  linux 和外部存储系统 的关系 参考原文: Oracle Linux and External Storage Systems (Doc ID 753050.1) 适用范围: Linux OS - Version Oracle Linux 4.4 to Oracle Linux 6.0 with Unbreakable Enterprise Kernel [2.6.32] [Release OL4U4 to OL6] Linux x86-64 Linux x86 Linux

【Ruby】【高级编程】面向对象

# [[面向对象]]#[实例变量]=begin实例变量是类属性,它们在使用类创建对象时就编程对象的属性.每个对象的属性是单独赋值的,和其他对象之间不共享.在类的内部,使用@运算符访问这些属性,在类的外部,使用访问器方法的公共方法进行访问.=end #例子class Box #构造函数 def initialize(w,h) @width,@height = w,h end #访问器方法 def printWidth @width end def printHeight @height enden

【Windows10&nbsp;IoT开发系列】配置篇

原文:[Windows10 IoT开发系列]配置篇 Windows10 For IoT是Windows 10家族的一个新星,其针对不同平台拥有不同的版本.而其最重要的一个版本是运行在Raspberry Pi.MinnowBoard和Galileo平台上的核心版.本文重点针对Raspberry Pi平台的Windwos10 IoT配置做介绍. Windows 10 IoT Editions ​一:设置你的电脑. 注:​开发Windows10 IoT的电脑需要Visual Studio 2015.

【Windows10&nbsp;IoT开发系列】PowerShell的相关配置

原文:[Windows10 IoT开发系列]PowerShell的相关配置 可使用 Windows PowerShell 远程配置和管理任何 Windows 10 IoT 核心版设备.PowerShell 是基于任务的命令行 Shell 和脚本语言,专为进行系统管理而设计. 1.​启动 PowerShell (PS) 会话 注:若要使用装有Windows10 IoT Core设备启动PS会话,首先需要在主机电脑与设备之间创建信任关系. ​启动 Windows IoT 核心版设备后,与该设备相连的