301474: CF278A. Circle Line
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Circle Line
题意翻译
## 题目描述 有$n$个车站排成一个环形,给定$n$个车站之间的距离,求从第$s$个车站到第$t$个车站所需的最短距离。 ## 输入格式 第一行给定车站个数$n$。 第二行给定$n$个车站之间的距离,其中第$i$个数表示第$i$个车站到第$i+1$个车站的距离$d_{i}$。特别地,最后一个数表示第一个车站与最后一个车站之间的距离。 第三行给定两个整数$s$和$t$,表示起点和终点。 ## 输出格式 输出共一行,表示第$s$个车站到第$t$个车站之间的最短距离。题目描述
The circle line of the Berland subway has $ n $ stations. We know the distances between all pairs of neighboring stations: - $ d_{1} $ is the distance between the $ 1 $ -st and the $ 2 $ -nd station; - $ d_{2} $ is the distance between the $ 2 $ -nd and the $ 3 $ -rd station;... - $ d_{n-1} $ is the distance between the $ n-1 $ -th and the $ n $ -th station; - $ d_{n} $ is the distance between the $ n $ -th and the $ 1 $ -st station. The trains go along the circle line in both directions. Find the shortest distance between stations with numbers $ s $ and $ t $ .输入输出格式
输入格式
The first line contains integer $ n $ ( $ 3<=n<=100 $ ) — the number of stations on the circle line. The second line contains $ n $ integers $ d_{1},d_{2},...,d_{n} $ ( $ 1<=d_{i}<=100 $ ) — the distances between pairs of neighboring stations. The third line contains two integers $ s $ and $ t $ ( $ 1<=s,t<=n $ ) — the numbers of stations, between which you need to find the shortest distance. These numbers can be the same. The numbers in the lines are separated by single spaces.
输出格式
Print a single number — the length of the shortest path between stations number $ s $ and $ t $ .
输入输出样例
输入样例 #1
4
2 3 4 9
1 3
输出样例 #1
5
输入样例 #2
4
5 8 2 100
4 1
输出样例 #2
15
输入样例 #3
3
1 1 1
3 1
输出样例 #3
1
输入样例 #4
3
31 41 59
1 1
输出样例 #4
0