A10684 | Nikita and stack
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Nikita has a stack. A stack in this problem is a data structure that supports two operations. Operation push(x) puts an integer $x$ on the top of the stack, and operation pop() deletes the top integer from the stack, i. e. the last added. If the stack is empty, then the operation pop() does nothing.
Nikita made $m$ operations with the stack but forgot them. Now Nikita wants to remember them. He remembers them one by one, on the $i$ -th step he remembers an operation he made $p_{i}$ -th. In other words, he remembers the operations in order of some permutation $p_{1},p_{2},...,p_{m}$ . After each step Nikita wants to know what is the integer on the top of the stack after performing the operations he have already remembered, in the corresponding order. Help him!
Nikita made $m$ operations with the stack but forgot them. Now Nikita wants to remember them. He remembers them one by one, on the $i$ -th step he remembers an operation he made $p_{i}$ -th. In other words, he remembers the operations in order of some permutation $p_{1},p_{2},...,p_{m}$ . After each step Nikita wants to know what is the integer on the top of the stack after performing the operations he have already remembered, in the corresponding order. Help him!
输入格式
The first line contains the integer $m$ ( $1<=m<=10^{5}$ ) — the number of operations Nikita made.
The next $m$ lines contain the operations Nikita remembers. The $i$ -th line starts with two integers $p_{i}$ and $t_{i}$ ( $1<=p_{i}<=m$ , $t_{i}=0$ or $t_{i}=1$ ) — the index of operation he remembers on the step $i$ , and the type of the operation. $t_{i}$ equals $0$ , if the operation is pop(), and $1$ , is the operation is push(x). If the operation is push(x), the line also contains the integer $x_{i}$ ( $1<=x_{i}<=10^{6}$ ) — the integer added to the stack.
It is guaranteed that each integer from $1$ to $m$ is present exactly once among integers $p_{i}$ .
The next $m$ lines contain the operations Nikita remembers. The $i$ -th line starts with two integers $p_{i}$ and $t_{i}$ ( $1<=p_{i}<=m$ , $t_{i}=0$ or $t_{i}=1$ ) — the index of operation he remembers on the step $i$ , and the type of the operation. $t_{i}$ equals $0$ , if the operation is pop(), and $1$ , is the operation is push(x). If the operation is push(x), the line also contains the integer $x_{i}$ ( $1<=x_{i}<=10^{6}$ ) — the integer added to the stack.
It is guaranteed that each integer from $1$ to $m$ is present exactly once among integers $p_{i}$ .
输出格式
Print $m$ integers. The integer $i$ should equal the number on the top of the stack after performing all the operations Nikita remembered on the steps from $1$ to $i$ . If the stack is empty after performing all these operations, print -1.
输入输出样例
输入 #1
2 2 1 2 1 0
输出 #1
2 2
输入 #2
3 1 1 2 2 1 3 3 0
输出 #2
2 3 2
输入 #3
5 5 0 4 0 3 1 1 2 1 1 1 1 2
输出 #3
-1 -1 -1 -1 2
In the first example, after Nikita remembers the operation on the first step, the operation push(2) is the only operation, so the answer is $2$ . After he remembers the operation pop() which was done before push(2), answer stays the same.
In the second example, the operations are push(2), push(3) and pop(). Nikita remembers them in the order they were performed.
In the third example Nikita remembers the operations in the reversed order.
In the second example, the operations are push(2), push(3) and pop(). Nikita remembers them in the order they were performed.
In the third example Nikita remembers the operations in the reversed order.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted