CF1316F.Battalion Strength
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n officers in the Army of Byteland. Each officer has some power associated with him. The power of the i -th officer is denoted by pi . As the war is fast approaching, the General would like to know the strength of the army.
The strength of an army is calculated in a strange way in Byteland. The General selects a random subset of officers from these n officers and calls this subset a battalion.(All 2n subsets of the n officers can be chosen equally likely, including empty subset and the subset of all officers).
The strength of a battalion is calculated in the following way:
Let the powers of the chosen officers be a1,a2,…,ak , where a1≤a2≤⋯≤ak . The strength of this battalion is equal to a1a2+a2a3+⋯+ak−1ak . (If the size of Battalion is ≤1 , then the strength of this battalion is 0 ).
The strength of the army is equal to the expected value of the strength of the battalion.
As the war is really long, the powers of officers may change. Precisely, there will be q changes. Each one of the form i x indicating that pi is changed to x .
You need to find the strength of the army initially and after each of these q updates.
Note that the changes are permanent.
The strength should be found by modulo 109+7 . Formally, let M=109+7 . It can be shown that the answer can be expressed as an irreducible fraction p/q , where p and q are integers and q≡0modM ). Output the integer equal to p⋅q−1modM . In other words, output such an integer x that 0≤x<M and x⋅q≡pmodM ).
输入格式
The first line of the input contains a single integer n ( 1≤n≤3⋅105 ) — the number of officers in Byteland's Army.
The second line contains n integers p1,p2,…,pn ( 1≤pi≤109 ).
The third line contains a single integer q ( 1≤q≤3⋅105 ) — the number of updates.
Each of the next q lines contains two integers i and x ( 1≤i≤n , $ 1 \leq x \leq 10^{9}$ ), indicating that pi is updated to x .
输出格式
In the first line output the initial strength of the army.
In i -th of the next q lines, output the strength of the army after i -th update.
输入输出样例
输入#1
2 1 2 2 1 2 2 1
输出#1
500000004 1 500000004
输入#2
4 1 2 3 4 4 1 5 2 5 3 5 4 5
输出#2
625000011 13 62500020 375000027 62500027
说明/提示
In first testcase, initially, there are four possible battalions
- {} Strength = 0
- { 1 } Strength = 0
- { 2 } Strength = 0
- { 1,2 } Strength = 2
So strength of army is 40+0+0+2 = 21 After changing p1 to 2 , strength of battallion { 1,2 } changes to 4 , so strength of army becomes 1 .
After changing p2 to 1 , strength of battalion { 1,2 } again becomes 2 , so strength of army becomes 21 .