博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mergeable Stack
阅读量:5303 次
发布时间:2019-06-14

本文共 4124 字,大约阅读时间需要 13 分钟。

Mergeable Stack

Time Limit: 2 Seconds      
Memory Limit: 65536 KB

Given  initially empty stacks, there are three types of operations:

  • s v: Push the value  onto the top of the -th stack.

  • s: Pop the topmost value out of the -th stack, and print that value. If the -th stack is empty, pop nothing and print "EMPTY" (without quotes) instead.

  • s t: Move every element in the -th stack onto the top of the -th stack in order.

    Precisely speaking, denote the original size of the -th stack by , and the original size of the -th stack by . Denote the original elements in the -th stack from bottom to top by , and the original elements in the -th stack from bottom to top by .

    After this operation, the -th stack is emptied, and the elements in the -th stack from bottom to top becomes . Of course, if , this operation actually does nothing.

There are  operations in total. Please finish these operations in the input order and print the answer for every operation of the second type.

Input

There are multiple test cases. The first line of the input contains an integer , indicating the number of test cases. For each test case:

The first line contains two integers  and  (), indicating the number of stacks and the number of operations.

The first integer of the following  lines will be  (), indicating the type of operation.

  • If , two integers  and  () follow, indicating an operation of the first type.
  • If , one integer  () follows, indicating an operation of the second type.
  • If , two integers  and  () follow, indicating an operation of the third type.

It's guaranteed that neither the sum of  nor the sum of  over all test cases will exceed .

Output

For each operation of the second type output one line, indicating the answer.

Sample Input

22 151 1 101 1 111 2 121 2 133 1 21 2 142 12 12 12 12 13 2 12 22 22 23 73 1 23 1 33 2 12 12 22 32 3

Sample Output

13121110EMPTY14EMPTYEMPTYEMPTYEMPTYEMPTYEMPTY 水题 模拟链表,删除注意消除指针 代码如下:
#pragma comment(linker, "/STACK:102400000,102400000")#include 
#include
#define mem(a,b) memset(a,b,sizeof(a))typedef long long ll;const int INF=0x3f3f3f3f;const int MAXN=3*1e6+5;using namespace std;int tot;typedef struct Node{ int v; Node* pre; Node* next;}*PNode,Node;struct PNod{ PNode head,tail;}vis[MAXN];void Merge(int x,int y){ vis[x].tail->next=vis[y].head; vis[y].head->pre=vis[x].tail; vis[x].tail=vis[y].tail;}int Init(int x){ PNode p=(PNode)malloc(sizeof(PNode)); p->v=x;p->next=p->pre=NULL; vis[++tot].head=vis[tot].tail=p; return tot;}void Insert(int x,int y){ PNode p=(PNode)malloc(sizeof(PNode)); p->v=y;p->next=NULL; vis[x].tail->next=p; p->pre=vis[x].tail; vis[x].tail=p;}int Top(int x){ return vis[x].tail->v;}int Pop(int x){ PNode p=vis[x].tail; vis[x].tail=vis[x].tail->pre; delete p; if(vis[x].tail==NULL) return 0; return 1;}int main(){ int t; map
my; scanf("%d",&t); while(t--) { int n,q,po,s,t,v; tot=0; my.clear(); scanf("%d%d",&n,&q); while(q--) { scanf("%d",&po); if(po==1) { scanf("%d%d",&s,&v); if(!my[s]) my[s]=Init(v); else Insert(my[s],v); } else if(po==2) { scanf("%d",&s); if(my[s]==0) puts("EMPTY"); else { printf("%d\n",Top(my[s])); if(!Pop(my[s])) my.erase(s); } } else { scanf("%d%d",&s,&t); if(!my[s]&&!my[t])continue; else if(!my[s]&&my[t]) { my[s]=my[t]; my.erase(t); } else if(my[s]&&!my[t])continue; else { Merge(my[s],my[t]); my.erase(t); } } } } return 0;}

 

转载于:https://www.cnblogs.com/lemon-jade/p/8734510.html

你可能感兴趣的文章
linq to sql 扩展方法
查看>>
241. Different Ways to Add Parentheses
查看>>
实验10 编写子程序 1.显示字符串
查看>>
Effect-Compiler Tool(fxc.exe)
查看>>
django中的缓存 单页面缓存,局部缓存,全站缓存 跨域问题的解决
查看>>
常见HTTP状态码(200、301、302、500等)
查看>>
Atiti.大企业病与小企业病 大公司病与小公司病
查看>>
处理器管理与进程调度
查看>>
解决随机数生成的坐标在对角线上的问题
查看>>
服务器ganglia安装
查看>>
HashMap的存储结构及原理
查看>>
在线即时展现 Html、JS、CSS 编辑工具 - JSFiddle
查看>>
veridata实验例(3)验证veridata发现insert操作不会导致同步
查看>>
django数据库交互
查看>>
【转载】SQL注入攻防入门详解
查看>>
图说二叉树添加数据原理以及遍历原理
查看>>
NTC(负温度)热敏电阻.阻值的计算方式
查看>>
ps aux 状态介绍
查看>>
二级指针内存模型
查看>>
bzoj千题计划140:bzoj4519: [Cqoi2016]不同的最小割
查看>>