Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollbacks Codeforces #585

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ARYPROGRAMMER
Copy link

solved codeforces 2600 problem - ROLLBACKS

problem statement :

This is a hard version of this problem. The only difference between the versions is that you have to solve the hard version in online mode. You can make hacks only if both versions of the problem are solved.

You have an array a
, which is initially empty. You need to process queries of the following types:

  • x
    — add the integer x
    to the end of the array a
    .
  • k
    — remove the last k
    numbers from the array a
    .
    ! — roll back the last active change (i.e., make the array a
    the way it was before the change). In this problem, only queries of the first two types (+ and -) are considered as changes.
    ? — find the number of distinct numbers in the array a
    .
    Input
    The first line contains an integer q
    (1≤q≤106
    ) — the number of queries.

The next q
lines contain the queries as described above.

It is guaranteed that

in the queries of the first type, 1≤x≤106
;
in the queries of the second type, k≥1
and k
does not exceed the current length of the array a
;
at the moment of the queries of the third type, there is at least one query of the first or of the second type that can be rolled back.
It is also guaranteed that the number of queries of the fourth type (?) does not exceed 105
.

Note that you should solve the problem in online mode. It means that you can't read the whole input at once. You can read each query only after writing the answer for the last query, so don't forget to flush output after printing answers. You can use functions like fflush(stdout) in C++ and BufferedWriter.flush in Java or similar after each writing in your program.

Output
For each query of the fourth type output one integer — the number of distinct elements in array a
at the moment of query.

Examples
inputCopy
10

  • 1
  • 2
  • 2
    ?
    !
  • 3
  • 2
    ?
  • 1
    ?
    outputCopy
    2
    1
    1
    inputCopy
    6
  • 1
  • 1000000
    ?
    !
    !
    ?
    outputCopy
    2
    0
    Note
    In the first example array a
    changes as follows:

After the first query, a=[1]
.
After the second query, a=[1,2]
.
After the third query, a=[1,2,2]
.
At the moment of the fourth query, there are 2
distinct intergers in the array a
: 1
and 2
.
After the fifth query, a=[1,2]
(rolled back the change + 2).
After the sixth query, a=[1,2,3]
.
After the seventh query, a=[1]
.
At the moment of the eigth query, there is only one 1
in the array a
.
After the ninth query, a=[1,1]
.
At the moment of the tenth query, there are only two 1
in the array a
.
In the second example array a
changes as follows:

After the first query, a=[1]
.
After the second query, a=[1,1000000]
.
At the moment of the third query, there are 2
distinct intergers in the array a
: 1
and 1000000
.
After the fourth query, a=[1]
(rolled back the change + 1000000).
After the fifth query, a=[]
(rolled back the change + 1).
At the moment of the sixth query, there are no integers in the array a
, so the answer to this query is 0
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant