pat1057 stack
超时算法,利用2的特殊性,用2个multiset来维护。单个multiset维护没法立即找到中位数。
其实也可以只用1个multiset,用一个中位指针,++,--来维护中位数。
#include<iostream>
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<stdlib.h>
#include<algorithm>
#include<queue>
#include<vector>
#include<string>
#include<map>
#include<stack>
#include<set>
using namespace std;
typedef long long ll;
const int maxn = 1e4 + 7;
int n;
multiset<int> up, lo;
stack<int> sta;
void adapt() {
int cnt = up.size() + lo.size();
int upsz = ceil(cnt / 2.0);
while (up.size() < upsz) {
up.insert(*lo.begin());
lo.erase(lo.begin());
}
while (up.size() > upsz) {
int x = *up.rbegin();
lo.insert(x);
up.erase(up.find(x));
}
}
void push(int x) {
up.insert(x);
adapt();
}
int peek() {
return *(up.rbegin());
}
void pop(int x) {
if (up.find(x) != up.end())
up.erase(up.find(x));
else
lo.erase(lo.find(x));
adapt();
}
int main() {
freopen("in.txt", "r", stdin);
cin >> n;
while (sta.empty() == false)
sta.pop();
up.clear(), lo.clear();
char cmd[13];
int x;
while (n--) {
cin >> cmd;
if (cmd[1] != 'u') {
if (lo.empty() && up.empty()) {
puts("Invalid");
continue;
}
if (cmd[1] == 'o') {
int x = sta.top();
sta.pop();
cout << x << endl;
pop(x);
} else if (cmd[1] == 'e') {
cout << peek() << endl;
}
} else {
cin >> x;
sta.push(x);
push(x);
}
}
return 0;
}
此题正解树状数组
#include<stdio.h>
#include<cstring>
#include<iostream>
#include<string>
using namespace std;
;
int c[N];
int lowbit(int i){
return i&(-i);
}
void add(int pos,int value){
while(pos<N){
c[pos]+=value;
pos+=lowbit(pos);
}
}
int sum(int pos){
;
){
res+=c[pos];
pos-=lowbit(pos);
}
return res;
}
int find(int value){
,r=N-,median,res;
){
==)
median=(l+r)/;
else
median=(l+r-)/;
res=sum(median);
if(res<value)
l=median;
else
r=median;
}
;
}
int main(){
//freopen("D://test.txt","r",stdin);
];
,n,pos;
memset(c,,sizeof(c));
scanf("%d",&n);
while(n--){
scanf("%s",ss);
]=='u'){
scanf("%d",&pos);
stack[++top]=pos;
add(pos,);
}]=='o'){
){
printf("Invalid\n");
continue;
}
int out=stack[top];
add();
printf("%d\n",stack[top--]);
}]=='e'){
){
printf("Invalid\n");
continue;
}
int res;
==)
res=find(top/);
else
res=find((top+)/);
printf("%d\n",res);
}else{
printf("Invalid\n");
}
}
;
}
类似题目:zoj3612
pat1057 stack的更多相关文章
- pat1057. Stack (30)
1057. Stack (30) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Stack is one of ...
- PAT1057 Stack(树状数组+倍增)
目录 题目大意 题目分析 题目大意 要求维护一个栈,提供压栈.弹栈以及求栈内中位数的操作(当栈内元素\(n\)为偶数时,只是求第\(n/2\)个元素而非中间两数的平均值).最多操作100000次,压栈 ...
- PAT1057 stack(分块思想)
1057 Stack (30分) Stack is one of the most fundamental data structures, which is based on the princ ...
- PAT-1057 Stack (树状数组 + 二分查找)
1057. Stack Stack is one of the most fundamental data structures, which is based on the principle of ...
- PAT甲级1057. Stack
PAT甲级1057. Stack 题意: 堆栈是最基础的数据结构之一,它基于"先进先出"(LIFO)的原理.基本操作包括Push(将元素插入顶部位置)和Pop(删除顶部元素).现在 ...
- 线性数据结构之栈——Stack
Linear data structures linear structures can be thought of as having two ends, whose items are order ...
- Java 堆内存与栈内存异同(Java Heap Memory vs Stack Memory Difference)
--reference Java Heap Memory vs Stack Memory Difference 在数据结构中,堆和栈可以说是两种最基础的数据结构,而Java中的栈内存空间和堆内存空间有 ...
- [数据结构]——链表(list)、队列(queue)和栈(stack)
在前面几篇博文中曾经提到链表(list).队列(queue)和(stack),为了更加系统化,这里统一介绍着三种数据结构及相应实现. 1)链表 首先回想一下基本的数据类型,当需要存储多个相同类型的数据 ...
- Stack Overflow 排错翻译 - Closing AlertDialog.Builder in Android -Android环境中关闭AlertDialog.Builder
Stack Overflow 排错翻译 - Closing AlertDialog.Builder in Android -Android环境中关闭AlertDialog.Builder 转自:ht ...
随机推荐
- 省级联动(使用ajax实现)
在博客园学习了很多实用的东西,现在该慢慢开始自己写写博客文章, 由于本人水平有限,刚走出校园的小菜鸟,另外,文章在表述和代码方面如有不妥之处,欢迎批评指正.留下你 的脚印,欢迎评论! 有什么问题,可以 ...
- mongo数据备份及恢复脚本
#!/bin/bashtime="$(date +"%Y.%m.%d")" id=`echo "show dbs;"|/usr/local/ ...
- C语言出错问题汇总【需要更新】
'getch' : undeclared identifier解决方案 在VC++6.0中编译程序 #include<stdio.h> void main() { printf(&qu ...
- Qt回忆录之配置开发环境
光阴荏苒,用Qt开发已经一年多了.在Windows上开发GUI,最常用的莫过于MFC,WinForm,WPF以及Qt.MFC和Qt是基于C++,而WinForm和WPF一般是基于C#,当然在PC上基于 ...
- 树莓派搭建安装mysql
最近刚入手了一枚树莓派,突发奇想打算做一个小型的家用服务器,在家7*24小时一直挂着. 真的是非常小,只有巴掌大,给树莓派买了一些配件,外壳.小风扇.2片散热片.32G SD卡.HDMI线,组装之后的 ...
- TCMalloc 对MYSQL 性能 优化的分析
虽然经过研究发现TCMalloc不适合我们现有的游戏框架,但意外收获发现TCMalloc可以大幅度提高MYSQL 性能及内存占用,这里给出配置及测试的结果: 1.配置 关于TCMalloc的安装,在& ...
- @RestController注解下返回到jsp视图页面
spring4.1中添加了@RestController注解很方便,集成了@ResponseBody注解,无需再在每个方法前添加了..但是却发现个问题..之前用@Controller注解的时候经常会如 ...
- javaScript事件(五)事件类型之鼠标事件
一.事件 二.事件流 以上内容见:javaScript事件(一)事件流 三.事件处理程序 四.IE事件处理程序 以上内容见javaScript事件(二)事件处理程序 五.事件对象 以上内容见javaS ...
- vmware虚拟机 32位Ubuntu 安装matlab_R2012A问题小记
最近由于学校课程的需要,所以在Ubuntu上捣腾了一下matlab,经历曲折,记录一下,希望能让大家少跳点坑.先分享一个有效的下载链接: http://www.matlab.org.cn/Downlo ...
- umeng社交分享最新版5.0的跨进程使用崩溃的问题及解法-Android
先简单介绍下5.0版的变化.5.0最大的特色是调用简单,采用了链式语法,形如: new ShareAction(context).setPlatform(share_media) .withText( ...