CF1380E.Merging Towers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a set of nn discs, the ii -th disc has radius ii . Initially, these discs are split among mm towers: each tower contains at least one disc, and the discs in each tower are sorted in descending order of their radii from bottom to top.

You would like to assemble one tower containing all of those discs. To do so, you may choose two different towers ii and jj (each containing at least one disc), take several (possibly all) top discs from the tower ii and put them on top of the tower jj in the same order, as long as the top disc of tower jj is bigger than each of the discs you move. You may perform this operation any number of times.

For example, if you have two towers containing discs [6,4,2,1][6, 4, 2, 1] and [8,7,5,3][8, 7, 5, 3] (in order from bottom to top), there are only two possible operations:

  • move disc 11 from the first tower to the second tower, so the towers are [6,4,2][6, 4, 2] and [8,7,5,3,1][8, 7, 5, 3, 1] ;
  • move discs [2,1][2, 1] from the first tower to the second tower, so the towers are [6,4][6, 4] and [8,7,5,3,2,1][8, 7, 5, 3, 2, 1] .

Let the difficulty of some set of towers be the minimum number of operations required to assemble one tower containing all of the discs. For example, the difficulty of the set of towers [[3,1],[2]][[3, 1], [2]] is 22 : you may move the disc 11 to the second tower, and then move both discs from the second tower to the first tower.

You are given m1m - 1 queries. Each query is denoted by two numbers aia_i and bib_i , and means "merge the towers aia_i and bib_i " (that is, take all discs from these two towers and assemble a new tower containing all of them in descending order of their radii from top to bottom). The resulting tower gets index aia_i .

For each k[0,m1]k \in [0, m - 1] , calculate the difficulty of the set of towers after the first kk queries are performed.

输入格式

The first line of the input contains two integers nn and mm ( 2mn21052 \le m \le n \le 2 \cdot 10^5 ) — the number of discs and the number of towers, respectively.

The second line contains nn integers t1t_1 , t2t_2 , ..., tnt_n ( 1tim1 \le t_i \le m ), where tit_i is the index of the tower disc ii belongs to. Each value from 11 to mm appears in this sequence at least once.

Then m1m - 1 lines follow, denoting the queries. Each query is represented by two integers aia_i and bib_i ( 1ai,bim1 \le a_i, b_i \le m , aibia_i \ne b_i ), meaning that, during the ii -th query, the towers with indices aia_i and bib_i are merged ( aia_i and bib_i are chosen in such a way that these towers exist before the ii -th query).

输出格式

Print mm integers. The kk -th integer ( 00 -indexed) should be equal to the difficulty of the set of towers after the first kk queries are performed.

输入输出样例

  • 输入#1

    7 4
    1 2 3 3 1 4 3
    3 1
    2 3
    2 4

    输出#1

    5
    4
    2
    0

说明/提示

The towers in the example are:

  • before the queries: [[5,1],[2],[7,4,3],[6]][[5, 1], [2], [7, 4, 3], [6]] ;
  • after the first query: [[2],[7,5,4,3,1],[6]][[2], [7, 5, 4, 3, 1], [6]] ;
  • after the second query: [[7,5,4,3,2,1],[6]][[7, 5, 4, 3, 2, 1], [6]] ;
  • after the third query, there is only one tower: [7,6,5,4,3,2,1][7, 6, 5, 4, 3, 2, 1] .
首页