A12493 | Number of Components
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The Kingdom of Kremland is a tree (a connected undirected graph without cycles) consisting of $n$ vertices. Each vertex $i$ has its own value $a_i$ . All vertices are connected in series by edges. Formally, for every $1 \leq i < n$ there is an edge between the vertices of $i$ and $i+1$ .
Denote the function $f(l, r)$ , which takes two integers $l$ and $r$ ( $l \leq r$ ):
- We leave in the tree only vertices whose values range from $l$ to $r$ .
- The value of the function will be the number of connected components in the new graph.
Your task is to calculate the following sum: $$$$\sum_{l=1}^{n} \sum_{r=l}^{n} f(l, r) $$$$
Denote the function $f(l, r)$ , which takes two integers $l$ and $r$ ( $l \leq r$ ):
- We leave in the tree only vertices whose values range from $l$ to $r$ .
- The value of the function will be the number of connected components in the new graph.
Your task is to calculate the following sum: $$$$\sum_{l=1}^{n} \sum_{r=l}^{n} f(l, r) $$$$
输入格式
The first line contains a single integer $n$ ( $1 \leq n \leq 10^5$ ) — the number of vertices in the tree.
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \leq a_i \leq n$ ) — the values of the vertices.
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \leq a_i \leq n$ ) — the values of the vertices.
输出格式
Print one number — the answer to the problem.
输入输出样例
输入 #1
3 2 1 3
输出 #1
7
输入 #2
4 2 1 1 3
输出 #2
11
输入 #3
10 1 5 2 5 5 3 10 6 5 1
输出 #3
104
In the first example, the function values will be as follows:
- $f(1, 1)=1$ (there is only a vertex with the number $2$ , which forms one component)
- $f(1, 2)=1$ (there are vertices $1$ and $2$ that form one component)
- $f(1, 3)=1$ (all vertices remain, one component is obtained)
- $f(2, 2)=1$ (only vertex number $1$ )
- $f(2, 3)=2$ (there are vertices $1$ and $3$ that form two components)
- $f(3, 3)=1$ (only vertex $3$ )
Totally out $7$ .In the second example, the function values will be as follows:
- $f(1, 1)=1$
- $f(1, 2)=1$
- $f(1, 3)=1$
- $f(1, 4)=1$
- $f(2, 2)=1$
- $f(2, 3)=2$
- $f(2, 4)=2$
- $f(3, 3)=1$
- $f(3, 4)=1$
- $f(4, 4)=0$ (there is no vertex left, so the number of components is $0$ )
Totally out $11$ .
- $f(1, 1)=1$ (there is only a vertex with the number $2$ , which forms one component)
- $f(1, 2)=1$ (there are vertices $1$ and $2$ that form one component)
- $f(1, 3)=1$ (all vertices remain, one component is obtained)
- $f(2, 2)=1$ (only vertex number $1$ )
- $f(2, 3)=2$ (there are vertices $1$ and $3$ that form two components)
- $f(3, 3)=1$ (only vertex $3$ )
Totally out $7$ .In the second example, the function values will be as follows:
- $f(1, 1)=1$
- $f(1, 2)=1$
- $f(1, 3)=1$
- $f(1, 4)=1$
- $f(2, 2)=1$
- $f(2, 3)=2$
- $f(2, 4)=2$
- $f(3, 3)=1$
- $f(3, 4)=1$
- $f(4, 4)=0$ (there is no vertex left, so the number of components is $0$ )
Totally out $11$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted