#985. The Lucky Game
The Lucky Game
说明
John and Brus believe that the digits 4 and 7 are lucky and all others are not. According to them, a lucky number is a number that contains only lucky digits in its decimal representation.
John and Brus play the following game. Initially, there is an interval of integers between a and b, inclusive. Then, John choose a subinterval of the initial interval that contains exactly jLen numbers. Finally, Brus chooses a subinterval of John's subinterval that contains exactly bLen numbers. The outcome of the game is the total number of lucky numbers in Brus's subinterval.
John follows the optimal strategy that maximizes the outcome. Brus follows the optimal strategy that minimizes the outcome. Return the outcome of the game.
输入格式
Each line contains four integers a,b,jLen,bLen.
1<=a<=b<=4747
1<=jLen<=b-a+1
1<=bLen<=jLen
输出格式
For each line of input,print the outcome of the game.
1 10 2 1
4 8 3 2
0
1