CF1380E.Merging Towers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have a set of n discs, the i -th disc has radius i . Initially, these discs are split among m 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 i and j (each containing at least one disc), take several (possibly all) top discs from the tower i and put them on top of the tower j in the same order, as long as the top disc of tower j 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] and [8,7,5,3] (in order from bottom to top), there are only two possible operations:
- move disc 1 from the first tower to the second tower, so the towers are [6,4,2] and [8,7,5,3,1] ;
- move discs [2,1] from the first tower to the second tower, so the towers are [6,4] and [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]] is 2 : you may move the disc 1 to the second tower, and then move both discs from the second tower to the first tower.
You are given m−1 queries. Each query is denoted by two numbers ai and bi , and means "merge the towers ai and bi " (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 ai .
For each k∈[0,m−1] , calculate the difficulty of the set of towers after the first k queries are performed.
输入格式
The first line of the input contains two integers n and m ( 2≤m≤n≤2⋅105 ) — the number of discs and the number of towers, respectively.
The second line contains n integers t1 , t2 , ..., tn ( 1≤ti≤m ), where ti is the index of the tower disc i belongs to. Each value from 1 to m appears in this sequence at least once.
Then m−1 lines follow, denoting the queries. Each query is represented by two integers ai and bi ( 1≤ai,bi≤m , ai=bi ), meaning that, during the i -th query, the towers with indices ai and bi are merged ( ai and bi are chosen in such a way that these towers exist before the i -th query).
输出格式
Print m integers. The k -th integer ( 0 -indexed) should be equal to the difficulty of the set of towers after the first k 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]] ;
- after the first query: [[2],[7,5,4,3,1],[6]] ;
- after the second query: [[7,5,4,3,2,1],[6]] ;
- after the third query, there is only one tower: [7,6,5,4,3,2,1] .