A12614 | Scalar Queries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a_1, a_2, \dots, a_n$ . All $a_i$ are pairwise distinct.
Let's define function $f(l, r)$ as follows:
- let's define array $b_1, b_2, \dots, b_{r - l + 1}$ , where $b_i = a_{l - 1 + i}$ ;
- sort array $b$ in increasing order;
- result of the function $f(l, r)$ is $\sum\limits_{i = 1}^{r - l + 1}{b_i \cdot i}$ .
Calculate $\left(\sum\limits_{1 \le l \le r \le n}{f(l, r)}\right) \mod (10^9+7)$ , i.e. total sum of $f$ for all subsegments of $a$ modulo $10^9+7$ .
Let's define function $f(l, r)$ as follows:
- let's define array $b_1, b_2, \dots, b_{r - l + 1}$ , where $b_i = a_{l - 1 + i}$ ;
- sort array $b$ in increasing order;
- result of the function $f(l, r)$ is $\sum\limits_{i = 1}^{r - l + 1}{b_i \cdot i}$ .
Calculate $\left(\sum\limits_{1 \le l \le r \le n}{f(l, r)}\right) \mod (10^9+7)$ , i.e. total sum of $f$ for all subsegments of $a$ modulo $10^9+7$ .
输入格式
The first line contains one integer $n$ ( $1 \le n \le 5 \cdot 10^5$ ) — the length of array $a$ .
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ , $a_i \neq a_j$ for $i \neq j$ ) — array $a$ .
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ , $a_i \neq a_j$ for $i \neq j$ ) — array $a$ .
输出格式
Print one integer — the total sum of $f$ for all subsegments of $a$ modulo $10^9+7$
输入输出样例
输入 #1
4 5 2 4 7
输出 #1
167
输入 #2
3 123456789 214365879 987654321
输出 #2
582491518
Description of the first example:
- $f(1, 1) = 5 \cdot 1 = 5$ ;
- $f(1, 2) = 2 \cdot 1 + 5 \cdot 2 = 12$ ;
- $f(1, 3) = 2 \cdot 1 + 4 \cdot 2 + 5 \cdot 3 = 25$ ;
- $f(1, 4) = 2 \cdot 1 + 4 \cdot 2 + 5 \cdot 3 + 7 \cdot 4 = 53$ ;
- $f(2, 2) = 2 \cdot 1 = 2$ ;
- $f(2, 3) = 2 \cdot 1 + 4 \cdot 2 = 10$ ;
- $f(2, 4) = 2 \cdot 1 + 4 \cdot 2 + 7 \cdot 3 = 31$ ;
- $f(3, 3) = 4 \cdot 1 = 4$ ;
- $f(3, 4) = 4 \cdot 1 + 7 \cdot 2 = 18$ ;
- $f(4, 4) = 7 \cdot 1 = 7$ ;
- $f(1, 1) = 5 \cdot 1 = 5$ ;
- $f(1, 2) = 2 \cdot 1 + 5 \cdot 2 = 12$ ;
- $f(1, 3) = 2 \cdot 1 + 4 \cdot 2 + 5 \cdot 3 = 25$ ;
- $f(1, 4) = 2 \cdot 1 + 4 \cdot 2 + 5 \cdot 3 + 7 \cdot 4 = 53$ ;
- $f(2, 2) = 2 \cdot 1 = 2$ ;
- $f(2, 3) = 2 \cdot 1 + 4 \cdot 2 = 10$ ;
- $f(2, 4) = 2 \cdot 1 + 4 \cdot 2 + 7 \cdot 3 = 31$ ;
- $f(3, 3) = 4 \cdot 1 = 4$ ;
- $f(3, 4) = 4 \cdot 1 + 7 \cdot 2 = 18$ ;
- $f(4, 4) = 7 \cdot 1 = 7$ ;
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted