CF145D.Lucky Pair
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.
Petya has an array a of n integers. The numbers in the array are numbered starting from 1 . Unfortunately, Petya has been misbehaving and so, his parents don't allow him play with arrays that have many lucky numbers. It is guaranteed that no more than 1000 elements in the array a are lucky numbers.
Petya needs to find the number of pairs of non-intersecting segments [l1;r1] and [l2;r2] ( 1<=l_{1}<=r_{1}<l_{2}<=r_{2}<=n , all four numbers are integers) such that there's no such lucky number that occurs simultaneously in the subarray a[l1..r1] and in the subarray a[l2..r2] . Help Petya count the number of such pairs.
输入格式
The first line contains an integer n (2<=n<=105) — the size of the array a . The second line contains n space-separated integers ai ( 1<=ai<=109 ) — array a . It is guaranteed that no more than 1000 elements in the array a are lucky numbers.
输出格式
On the single line print the only number — the answer to the problem.
Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.
输入输出样例
输入#1
4 1 4 2 4
输出#1
9
输入#2
2 4 7
输出#2
1
输入#3
4 4 4 7 7
输出#3
9
说明/提示
The subarray a[l..r] is an array that consists of elements al , al+1 , ..., ar .
In the first sample there are 9 possible pairs that satisfy the condition: [1,1] and [2,2] , [1,1] and [2,3] , [1,1] and [2,4] , [1,1] and [3,3] , [1,1] and [3,4] , [1,1] and [4,4] , [1,2] and [3,3] , [2,2] and [3,3] , [3,3] and [4,4] .
In the second sample there is only one pair of segments — [1;1] and [2;2] and it satisfies the condition.