CF1485B.Replace and Keep Sorted
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Given a positive integer k , two arrays are called k -similar if:
- they are strictly increasing;
- they have the same length;
- all their elements are positive integers between 1 and k (inclusive);
- they differ in exactly one position.
You are given an integer k , a strictly increasing array a and q queries. For each query, you are given two integers li≤ri . Your task is to find how many arrays b exist, such that b is k -similar to array [ali,ali+1…,ari] .
输入格式
The first line contains three integers n , q and k ( 1≤n,q≤105 , n≤k≤109 ) — the length of array a , the number of queries and number k .
The second line contains n integers a1,a2,…,an ( 1≤ai≤k ). This array is strictly increasing — a1<a2<…<an .
Each of the following q lines contains two integers li , ri ( 1≤li≤ri≤n ).
输出格式
Print q lines. The i -th of them should contain the answer to the i -th query.
输入输出样例
输入#1
4 2 5 1 2 4 5 2 3 3 4
输出#1
4 3
输入#2
6 5 10 2 4 6 7 8 9 1 4 1 2 3 5 1 6 5 5
输出#2
8 9 7 6 9
说明/提示
In the first example:
In the first query there are 4 arrays that are 5 -similar to [2,4] : [1,4],[3,4],[2,3],[2,5] .
In the second query there are 3 arrays that are 5 -similar to [4,5] : [1,5],[2,5],[3,5] .