A14142 | Replace and Keep Sorted
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $l_i \leq r_i$ . Your task is to find how many arrays $b$ exist, such that $b$ is $k$ -similar to array $[a_{l_i},a_{l_i+1}\ldots,a_{r_i}]$ .
- 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 $l_i \leq r_i$ . Your task is to find how many arrays $b$ exist, such that $b$ is $k$ -similar to array $[a_{l_i},a_{l_i+1}\ldots,a_{r_i}]$ .
输入格式
The first line contains three integers $n$ , $q$ and $k$ ( $1\leq n, q \leq 10^5$ , $n\leq k \leq 10^9$ ) — the length of array $a$ , the number of queries and number $k$ .
The second line contains $n$ integers $a_1, a_2, \ldots,a_n$ ( $1 \leq a_i \leq k$ ). This array is strictly increasing — $a_1 < a_2 < \ldots < a_n$ .
Each of the following $q$ lines contains two integers $l_i$ , $r_i$ ( $1 \leq l_i \leq r_i \leq n$ ).
The second line contains $n$ integers $a_1, a_2, \ldots,a_n$ ( $1 \leq a_i \leq k$ ). This array is strictly increasing — $a_1 < a_2 < \ldots < a_n$ .
Each of the following $q$ lines contains two integers $l_i$ , $r_i$ ( $1 \leq l_i \leq r_i \leq 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]$ .
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]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted