CF1876G.Clubstep
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is an extremely hard video game that is one of Chaneka's favourite video games. One of the hardest levels in the game is called Clubstep. Clubstep consists of n parts, numbered from 1 to n . Chaneka has practised the level a good amount, so currently, her familiarity value with each part i is ai .
After this, Chaneka can do several (possibly zero) attempts on Clubstep. In each attempt, she dies on one of the n parts. If an attempt dies on part p , that means it only successfully passes through every part k for all 1≤k≤p−1 and it does not reach any part k for all p+1≤k≤n . An attempt that dies on part p takes p seconds.
It is known that Chaneka improves much more on the part she dies on than anything else. It is also known that during an attempt, Chaneka does not get to practise that much on the parts she does not reach. So, the effect of an attempt that dies on part p is as follows:
- Chaneka's familiarity value with part p increases by 2 .
- Chaneka's familiarity value with each part k for all 1≤k≤p−1 increases by 1 .
There will be q questions. For the j -th question, you are given three integers lj , rj , and xj . Then, you are asked to find out the minimum time (in seconds) for Chaneka to make it such that the familiarity value for every part p ( lj≤p≤rj ) is at least xj .Note that each question is independent, so the attempt Chaneka does on a question does not affect the familiarity values of any other questions.
输入格式
The first line contains a single integer n ( 1≤n≤3⋅105 ) — the number of parts in Clubstep.
The second line contains n integers a1,a2,a3,…,an ( 1≤ai≤109 ) — Chaneka's familiarity value with each part.
The third line contains a single integer q ( 1≤q≤3⋅105 ) — the number of questions.
The j -th of the next q lines contains three integers lj , rj , and xj ( 1≤lj≤rj≤n ; 1≤xj≤109 ) — the description of the j -th question.
输出格式
Output q lines with an integer in each line. The integer in the j -th line represents the minimum time (in seconds) for Chaneka to make it such that the familiarity value for every part p ( lj≤p≤rj ) is at least xj .
输入输出样例
输入#1
5 1 3 2 1 2 3 1 5 5 2 4 5 3 3 1
输出#1
15 11 0
说明/提示
For the 1 -st question, one possible strategy is to do the following:
- Do 1 attempt that dies on part 1 . This takes 1 second. The familiarity values become [3,3,2,1,2] .
- Do 1 attempt that dies on part 4 . This takes 4 seconds. The familiarity values become [4,4,3,3,2] .
- Do 2 attempts that die on part 5 . This takes 10 seconds. The familiarity values become [6,6,5,5,6] .
The total time taken (in seconds) is 1+4+10=15 .
For the 2 -nd question, one possible strategy is to do the following:
- Do 1 attempt that dies on part 3 . This takes 3 seconds. The familiarity values become [2,4,4,1,2] .
- Do 2 attempts that die on part 4 . This takes 8 seconds. The familiarity values become [4,6,6,5,2] .
The total time taken (in seconds) is 3+8=11 .