CF1814E.Chain Chips

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected graph consisting of nn vertices and n1n-1 edges. The ii -th edge has weight aia_i ; it connects the vertices ii and i+1i+1 .

Initially, each vertex contains a chip. Each chip has an integer written on it; the integer written on the chip in the ii -th vertex is ii .

In one operation, you can choose a chip (if there are multiple chips in a single vertex, you may choose any one of them) and move it along one of the edges of the graph. The cost of this operation is equal to the weight of the edge.

The cost of the graph is the minimum cost of a sequence of such operations that meets the following condition:

  • after all operations are performed, each vertex contains exactly one chip, and the integer on each chip is not equal to the index of the vertex where that chip is located.

You are given qq queries of the form:

  • kk xx — change the weight of the kk -th edge (the one which connects the vertices kk and k+1k+1 ) to xx .

After each query, print the cost of the graph. Note that you don't actually move any chips; when you compute the cost, the chips are on their initial positions.

输入格式

The first line contains one integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ).

The second line contains n1n-1 integers a1,a2,,an1a_1, a_2, \dots, a_{n-1} ( 1ai1091 \le a_i \le 10^9 ).

The third line contains one integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ).

Then qq lines follow. The ii -th of them contains two integers kk and xx ( 1kn11 \le k \le n-1 ; 1x1091 \le x \le 10^9 ) for the ii -th query.

输出格式

For each query, print one integer — the cost of the graph after the query is performed.

输入输出样例

  • 输入#1

    10
    12 6 12 15 20 8 17 12 15
    8
    4 10
    7 3
    6 14
    9 9
    2 10
    3 5
    4 11
    7 11

    输出#1

    126
    108
    120
    108
    112
    98
    98
    114
首页