#USACOC2222B. Farm Updates

Farm Updates

当前没有测试数据。

Description

Farmer John operates a collection of NN farms, convenientlynumbered 1N1\ldots N. Initially, there are no roads connecting these farms toeach-other, and each farm is actively producing milk.

Due to the dynamic nature of the economy, Farmer John needs to make changes tohis farms according to a series of QQ update operations. Update operations come in three possible forms:

  • (D x) Deactivate an active farm xx, so it no longer produces milk.
  • (A x y) Add a road between two active farms xx and yy.
  • (R e) Remove the eeth road that was previously added (e=1e = 1 is the firstroad that was added).

A farm xx that is actively producing milk, or that can reach another activefarm via a series of roads, is called a "relevant" farm. For each farm xx,please calculate the maximum ii such that xx is relevantafter the ii-th update.

  • 1N1051\le N\le 10^5
  • 0Q21050\le Q\le 2\cdot 10^5
  • 0iQ0\le i\le Q

Input Format

The first line of input contains NN and QQ. The next QQ lines each contain an update of one of the following forms:

D x
A x y
R e

It is guaranteed that for updates of type R, ee is at most the number of roadsthat have been added so far, and no two updates of type R have the same value ofee.

Output Format

Please output NN lines, each containing an integer in the range 0Q0\ldots Q.

5 9
A 1 2
A 2 3
D 1
D 3
A 2 4
D 2
R 2
R 1
R 3
5 9
A 1 2
A 2 3
D 1
D 3
A 2 4
D 2
R 2
R 1
R 3

Scoring

  • Tests 2 through 5 satisfy N103N\le 10^3, Q2103Q\le 2\cdot 10^3
  • Test cases 6 through 20 satisfy no additional constraints.

Problem Credit

Problem credits: Benjamin Qi