题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4016

直接用栈爆内存,看网上大神用数组实现的,构思巧妙,学习了!

AC代码:

/*
* 用数组实现栈的一些操作
*/
#include <cstdio>
#include <cstring> using namespace std; const int maxn = 300005; int arr[maxn]; //存放所有的数据 //top代表栈顶元素在arr中的下标,
//Next代表栈顶元素下一个元素在arr中的下标,用于实现在栈顶元素被抛出后,栈顶新的指向,
//bottom代表栈低元素在arr中的位置
int top[maxn], Next[maxn], bottom[maxn]; int main() {
int T;
scanf("%d", &T);
int n, q;
int op, cnt;
int s, v, t;
while (T--) {
cnt = 0;
memset(top, 0, sizeof(top));
memset(Next, 0, sizeof(Next));
memset(bottom, 0, sizeof(bottom));
scanf("%d%d", &n, &q);
while (q--) {
scanf("%d", &op);
if (op == 1) {
scanf("%d%d", &s, &v);
arr[++cnt] = v;
if (bottom[s] == 0) { //如果原先栈为空,新加入的第一个元素将成为栈底元素
bottom[s] = cnt;
}
//更新栈顶元素和栈顶的下一个元素
Next[cnt] = top[s]; //也可写作Next[top[s]] = top[s];
top[s] = cnt;
} else if (op == 2) {
scanf("%d", &s);
if (top[s]) {
printf("%d\n", arr[top[s]]); //抛出栈顶元素,注意,top存放的是栈顶元素在arr中的下标
top[s] = Next[top[s]]; //栈顶元素重定向
if (top[s] == 0) { //若栈为空,则栈顶和栈底都置为0,容易忽略这个判断
bottom[s] = 0;
}
} else {
printf("EMPTY\n");
}
} else if (op == 3) {
scanf("%d%d", &s, &t);
if (top[t]) {
if (bottom[s] == 0) { //如果第s个栈为空,则s的栈底就是t的栈底
bottom[s] = bottom[t];
}
//t的栈底元素的下一个为s的栈顶元素,这里不用在重定向s栈顶元素的下一个元素,因为t已经指定过了
Next[bottom[t]] = top[s];
top[s] = top[t];
}
top[t] = bottom[t] = 0; //把第t个栈置为空,容易忽略
}
}
}
return 0;
}

又看到网上一个用list实现的

#include <cstdio>
#include <list> using namespace std;
const int maxn = 3e5 + 5;
list<int> l[maxn]; int main() {
int n, t, q;
scanf("%d", &t);
while (t--) {
scanf("%d%d", &n, &q);
for (int i = 1; i <= n; i++)
l[i].clear();
while (q--) {
int op, s, v, t;
scanf("%d", &op);
if (op == 1) {
scanf("%d%d", &s, &v);
l[s].push_back(v);
} else if (op == 2) {
scanf("%d", &s);
if (l[s].empty()) printf("EMPTY\n");
else {
printf("%d\n", l[s].back());
l[s].pop_back();
}
} else if (op == 3) {
scanf("%d%d", &s, &t);
l[s].splice(l[s].end(), l[t]); //splice 直接进行合并不进行排序,merge默认升序合并排序
}
}
}
return 0;
}

我写的代码,不能AC

/*
* Memory Limit Exceeded
*/
#include <stack>
#include <cstdio> using namespace std; const int maxn = 300005; stack<int> arr[maxn]; int maze[maxn]; int x, y, z; void solve_push(int y, int z) {
arr[y].push(z);
} void solve_top(int y) {
if (!arr[y].empty()) {
int x = arr[y].top();
arr[y].pop();
printf("%d\n", x);
} else {
printf("EMPTY\n");
}
} void solve_move(int y, int z) {
stack<int> temp;
int x;
while (!arr[z].empty()) {
x = arr[z].top();
arr[z].pop();
temp.push(x);
}
while (!temp.empty()) {
x = temp.top();
temp.pop();
arr[y].push(x);
}
} int main() {
int t;
int n, q;
int flag; scanf("%d", &t);
while (t--) {
flag = 0;
scanf("%d%d", &n, &q);
for (int i = 0; i < q; i++) {
scanf("%d", &x);
if (x == 1) {
scanf("%d%d", &y, &z);
maze[flag++] = y;
solve_push(y, z);
}
if (x == 2) {
scanf("%d", &y);
maze[flag++] = y;
solve_top(y);
}
if (x == 3) {
scanf("%d%d", &y, &z);
maze[flag++] = y;
maze[flag++] = z;
solve_move(y, z);
}
}
for (int i = 0; i < flag; i++) {
while (!arr[maze[flag]].empty()) {
arr[maze[flag]].pop();
}
}
}
return 0;
}

[ZOJ 4016] Mergable Stack的更多相关文章

  1. ZOJ - 4016 Mergeable Stack 【LIST】

    题目链接 http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4016 题意 模拟栈的三种操作 第一种 push 将指定元素压入指 ...

  2. ZOJ 4016 Mergeable Stack(利用list模拟多个栈的合并,STL的应用,splice函数!!!)

    Mergeable Stack Time Limit: 2 Seconds      Memory Limit: 65536 KB Given initially empty stacks, ther ...

  3. ZOJ 4016 Mergeable Stack(栈的数组实现)

    Mergeable Stack Time Limit: 2 Seconds      Memory Limit: 65536 KB Given  initially empty stacks, the ...

  4. ZOJ - 4016 Mergeable Stack (STL 双向链表)

    [传送门]http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4016 [题目大意]初始有n个空栈,现在有如下三种操作: (1) ...

  5. ZOJ 4016 Mergeable Stack 链表

    Mergeable Stack Time Limit: 2 Seconds      Memory Limit: 65536 KB Given  initially empty stacks, the ...

  6. ZOJ 4016 Mergeable Stack(from The 18th Zhejiang University Programming Contest Sponsored by TuSimple)

    模拟题,用链表来进行模拟 # include <stdio.h> # include <stdlib.h> typedef struct node { int num; str ...

  7. Mergeable Stack ZOJ - 4016(list)

    ZOJ - 4016 vector又T又M list是以链表的方式存储的 是一个双向链表 元素转移操作中,不能一个个遍历加入到s中,list独有的splic函数可以在常数时间内实现合并(并删除源lis ...

  8. zoj 3210 A Stack or A Queue? (数据结构水题)

     A Stack or A Queue? Time Limit: 1 Second      Memory Limit: 32768 KB Do you know stack and queue? ...

  9. ZOJ 3210 A Stack or A Queue?

    A Stack or A Queue? Time Limit: 1 Second      Memory Limit: 32768 KB Do you know stack and queue? Th ...

随机推荐

  1. Java-字符串、集合

    1.只要是字符串,必然是对象. 2.API文档的基本使用 3.如何创建字符串: 直接饮用赋值,也是一个字符串对象. 可以通过new关键字来调用string的构造方法: public string (c ...

  2. No fallback instance of type class found for feign client user-service(转)

    1.错误日志 在 feign 开启熔断,配置 fallback 类,实现当前接口的实现类时,报错信息如下: Error starting ApplicationContext. To display ...

  3. 20190429 照片里面的GPS信息确实会暴露经纬度

    这是我用Android手机拍摄的照片,并上传了原图(当然在没开启定位的工作的话,照片也没有GPS这个属性显示) 2. 之前也有一种关于给陌生人点赞,通过点赞来查看你与这个陌生人的距离,我也测试了一下有 ...

  4. JS生成当前月份包括最近12个月内的月份

    var last_year_month = function() { var result = []; for(var i = 0; i < 12; i++) { var d = new Dat ...

  5. 【Linux】Mac Centos install VMware Tools

    can't use yum: vi /etc/sysconfig/network-scripts/ifcfg-enp4s0 yum -y install lshw pciutils gdisk sys ...

  6. Java-接口(interface)

    1.1接口的定义 java中接口是一系列方法的声明,是一些方法特征的集合,一个接口只有方法的特征没有方法的实现,因此这些方法可以在不同的地方被不同的类实现,而这些实现可以具有不同的行为(功能). 接口 ...

  7. GAITC 2019全球人工智能技术大会(南京)

    2019年5月25日至26日,由中国人工智能学会主办,以“交叉.融合.相生.共赢”为主题的2019GAITC将在南京全新亮相. 2019 全球人工智能技术大会(2019 GAITC)以“前端引领.深度 ...

  8. JS对象、构造器函数和原型对象之间的关系

    一.基本概念 1.对象:属性和方法的集合,即变量和函数的封装.每个对象都有一个__proto__属性,指向这个对象的构造函数的原型对象. 2.构造器函数:用于创建对象的函数,通过new关键字生成对象. ...

  9. Unity XLua之协程

    如何使用xlua实现协程,示例代码如下: 转载请注明出处:https://www.cnblogs.com/jietian331/p/10735773.html local unpack = unpac ...

  10. 【转】Oracle EBS中查询Profile的各种SQL

    参考 http://blog.csdn.net/pan_tian/article/details/7652968#t0 Using API FND_PROFILE.save to update pro ...