题库练习 Nikita and stack
← 上一题 下一题 →

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!

输入格式

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}$ .

输出格式

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
C++ 编辑器
输入
输出