CF121D.Lucky Segments

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.

Petya has nn number segments [l1; r1][l_{1}; r_{1}] , [l2; r2][l_{2}; r_{2}] , ..., [ln; rn][l_{n}; r_{n}] . During one move Petya can take any segment (let it be segment number ii ) and replace it with segment [li+1; ri+1][l_{i}+1; r_{i}+1] or [li1; ri1][l_{i}-1; r_{i}-1] . In other words, during one move Petya can shift any segment to the left or to the right by a unit distance. Petya calls a number full if it belongs to each segment. That is, number xx is full if for any ii (1<=i<=n)(1<=i<=n) the condition li<=x<=ril_{i}<=x<=r_{i} is fulfilled.

Petya makes no more than kk moves. After that he counts the quantity of full lucky numbers. Find the maximal quantity that he can get.

输入格式

The first line contains two integers nn and kk ( 1<=n<=1051<=n<=10^{5} , 1<=k<=1018)1<=k<=10^{18}) — the number of segments and the maximum number of moves. Next nn lines contain pairs of integers lil_{i} and rir_{i} (1<=li<=ri<=1018)(1<=l_{i}<=r_{i}<=10^{18}) .

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the %I64d specificator.

输出格式

Print on the single line the single number — the answer to the problem.

输入输出样例

  • 输入#1

    4 7
    1 4
    6 9
    4 7
    3 5
    

    输出#1

    1
    
  • 输入#2

    2 7
    40 45
    47 74
    

    输出#2

    2
    

说明/提示

In the first sample Petya shifts the second segment by two units to the left (it turns into [4; 7][4; 7] ), after that number 44 becomes full.

In the second sample Petya shifts the first segment by two units to the right (it turns into [42; 47][42; 47] ), and shifts the second segment by three units to the left (it turns into [44; 71][44; 71] ), after that numbers 4444 and 4747 become full.

首页