303493: CF675E. Trains and Statistic
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Trains and Statistic
题意翻译
有n个车站,告诉你第i个车站可以到[ i+1,a[i] ]。 若p[i][j]为从i到j最小车票花费,求所有p[i][j]的和 输入 第一行n。 第二行n-1个数,表示a[i]. 输出 见上(1 ≤ i < j ≤ n)题目描述
Vasya commutes by train every day. There are $ n $ train stations in the city, and at the $ i $ -th station it's possible to buy only tickets to stations from $ i+1 $ to $ a_{i} $ inclusive. No tickets are sold at the last station. Let $ ρ_{i,j} $ be the minimum number of tickets one needs to buy in order to get from stations $ i $ to station $ j $ . As Vasya is fond of different useless statistic he asks you to compute the sum of all values $ ρ_{i,j} $ among all pairs $ 1<=i<j<=n $ .输入输出格式
输入格式
The first line of the input contains a single integer $ n $ ( $ 2<=n<=100000 $ ) — the number of stations. The second line contains $ n-1 $ integer $ a_{i} $ ( $ i+1<=a_{i}<=n $ ), the $ i $ -th of them means that at the $ i $ -th station one may buy tickets to each station from $ i+1 $ to $ a_{i} $ inclusive.
输出格式
Print the sum of $ ρ_{i,j} $ among all pairs of $ 1<=i<j<=n $ .
输入输出样例
输入样例 #1
4
4 4 4
输出样例 #1
6
输入样例 #2
5
2 3 5 5
输出样例 #2
17