CF121E.Lucky Array

普及/提高-

通过率: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 an array consisting of nn numbers. He wants to perform mm operations of two types:

  • add ll rr dd — add an integer dd to all elements whose indexes belong to the interval from ll to rr , inclusive (1<=l<=r<=n,1<=d<=104)(1<=l<=r<=n,1<=d<=10^{4}) ;
  • count ll rr — find and print on the screen how many lucky numbers there are among elements with indexes that belong to the interval from ll to rr inclusive (1<=l<=r<=n)(1<=l<=r<=n) . Each lucky number should be counted as many times as it appears in the interval.

Petya has a list of all operations. The operations are such that after all additions the array won't have numbers that would exceed 10410^{4} . Help Petya write a program that would perform these operations.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=1051<=n,m<=10^{5} ) — the number of numbers in the array and the number of operations correspondingly. The second line contains nn positive integers, none of which exceeds 10410^{4} — those are the array numbers. Next mm lines contain operations, one per line. They correspond to the description given in the statement.

It is guaranteed that after all operations are fulfilled each number in the array will not exceed 10410^{4} .

输出格式

For each operation of the second type print the single number on the single line — the number of lucky numbers in the corresponding interval.

输入输出样例

  • 输入#1

    3 6
    2 3 4
    count 1 3
    count 1 2
    add 1 3 2
    count 1 3
    add 2 3 3
    count 1 3
    

    输出#1

    1
    0
    1
    1
    
  • 输入#2

    4 5
    4 4 4 4
    count 1 4
    add 1 4 3
    count 1 4
    add 2 3 40
    count 1 4
    

    输出#2

    4
    4
    4
    

说明/提示

In the first sample after the first addition the array will look in the following manner:

4 5 6

After the second addition:

4 8 9

The second sample after the first addition:

7 7 7 7

After the second addition:

7 47 47 7

首页