CF1788D.Moving Dots
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
We play a game with n dots on a number line.
The initial coordinate of the i -th dot is xi . These coordinates are distinct. Every dot starts moving simultaneously with the same constant speed.
Each dot moves in the direction of the closest dot (different from itself) until it meets another dot. In the case of a tie, it goes to the left. Two dots meet if they are in the same coordinate, after that, they stop moving.
After enough time, every dot stops moving. The result of a game is the number of distinct coordinates where the dots stop.
Because this game is too easy, calculate the sum of results when we play the game for every subset of the given n dots that has at least two dots. As the result can be very large, print the sum modulo 109+7 .
输入格式
The first line contains one integer n ( 2≤n≤3000 ).
The next line contains n integers x1,x2,…,xn ( 1≤x1<x2<…<xn≤109 ), where xi represents the initial coordinate of i -th dot.
输出格式
Print the sum of results modulo 109+7 .
输入输出样例
输入#1
4 1 2 4 6
输出#1
11
输入#2
5 1 3 5 11 15
输出#2
30
说明/提示
In the first example, for a subset of size 2 , two dots move toward each other, so there is 1 coordinate where the dots stop.
For a subset of size 3 , the first dot and third dot move toward the second dot, so there is 1 coordinate where the dots stop no matter the direction where the second dot moves.
For [1,2,4,6] , the first and second dots move toward each other. For the third dot, initially, the second dot and the fourth dot are the closest dots. Since it is a tie, the third dot moves left. The fourth dot also moves left. So there is 1 coordinate where the dots stop, which is 1.5 .
Because there are 6 subsets of size 2 , 4 subsets of size 3 and one subset of size 4 , the answer is 6⋅1+4⋅1+1=11 .
In the second example, for a subset of size 5 (when there are dots at 1 , 3 , 5 , 11 , 15 ), dots at 1 and 11 will move right and dots at 3 , 5 , 15 will move left. Dots at 1 , 3 , 5 will eventually meet at 2 , and dots at 11 and 15 will meet at 13 , so there are 2 coordinates where the dots stop.