CF1810F.M-tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A rooted tree is called good if every vertex of the tree either is a leaf (a vertex with no children) or has exactly mm children.

For a good tree, each leaf uu has a positive integer cuc_{u} written on it, and we define the value of the leaf as cu+depuc_{u} + \mathrm{dep}_{u} , where depu\mathrm{dep}_{u} represents the number of edges of the path from vertex uu to the root (also known as the depth of uu ). The value of a good tree is the maximum value of all its leaves.

Now, you are given an array of nn integers a1,a2,,ana_{1}, a_{2}, \ldots, a_{n} , which are the integers that should be written on the leaves. You need to construct a good tree with nn leaves and write the integers from the array aa to all the leaves. Formally, you should assign each leaf uu an index bub_{u} , where bb is a permutation of length nn , and represent that the integer written on leaf uu is cu=abuc_u = a_{b_{u}} . Under these constraints, you need to minimize the value of the good tree.

You have qq queries. Each query gives you xx , yy and changes axa_{x} to yy , and after that, you should output the minimum value of a good tree based on the current array aa .

A permutation of length nn is an array consisting of nn distinct integers from 11 to nn in arbitrary order. For example, [2,3,1,5,4][2,3,1,5,4] is a permutation, but [1,2,2][1,2,2] is not a permutation ( 22 appears twice in the array), and [1,3,4][1,3,4] is also not a permutation ( n=3n=3 but there is 44 in the array).

输入格式

Each test contains multiple test cases. The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Their description follows.

The first line contains three integers nn , mm , and qq ( 1n,q21051\le n,q \le 2 \cdot 10^5 , 2m21052\le m \le 2\cdot 10^5 , n1(modm1)n \equiv 1 \pmod {m - 1} ) — the number of the leaves, the constant mm , and the number of queries.

The second line contains nn integers a1,a2,,ana_{1},a_{2}, \ldots, a_{n} ( 1ain1 \le a_{i} \le n ) — the initial array.

For the following qq lines, each line contains two integers xx and yy ( 1x,yn1\le x,y\le n ), representing a query changing axa_{x} to yy .

It is guaranteed that both the sum of nn and the sum of qq do not exceed 21052\cdot 10^5 .

输出格式

For each test case, output qq integers in one line, the ii -th of which is the minimum tree value after the ii -th change.

输入输出样例

  • 输入#1

    3
    5 3 3
    3 3 4 4 5
    1 4
    2 4
    3 5
    5 2 4
    3 3 4 4 5
    1 4
    2 5
    3 5
    4 5
    7 3 4
    1 2 2 3 3 3 4
    1 4
    2 1
    5 5
    6 6

    输出#1

    6 6 6
    7 7 7 8
    6 6 6 7

说明/提示

In the first test case, after the first query, the current array aa is [4,3,4,4,5][4,3,4,4,5] . We can construct such a good tree:

The first number inside a vertex is its index (in this problem, the indices do not matter, but help to understand the figure). If a vertex is a leaf, the second number inside the vertex is the integer written on it.

We can tell that dep3=dep4=1,dep5=dep6=dep7=2\mathrm{dep}_{3}=\mathrm{dep}_{4}=1,\mathrm{dep}_{5}=\mathrm{dep}_{6}=\mathrm{dep}_{7}=2 and the value of the tree, which is the maximum value over all leaves, is 5+1=65+1=6 . The value of leaves 55 , 66 , 77 is also equal to 66 . It can be shown that this tree has the minimum value over all valid trees.

首页