CF132E.Bits of merry old England

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Another feature of Shakespeare language is that the variables are named after characters of plays by Shakespeare, and all operations on them (value assignment, output etc.) look like a dialog with other characters. New values of variables are defined in a rather lengthy way, so a programmer should try to minimize their usage.

You have to print the given sequence of nn integers. To do this, you have mm variables and two types of operations on them:

  • variable=integer
  • print(variable)

Any of the mm variables can be used as variable. Variables are denoted by lowercase letters between "a" and "z", inclusive. Any integer number can be used as integer.

Let's say that the penalty for using first type of operations equals to the number of set bits in the number integer. There is no penalty on using second type of operations. Find and output the program which minimizes the penalty for printing the given sequence of numbers.

输入格式

The first line of input contains integers nn and mm ( 1<=n<=2501<=n<=250 , 1<=m<=261<=m<=26 ). The second line contains the sequence to be printed. Each element of the sequence is an integer between 11 and 10910^{9} , inclusive. The sequence has to be printed in the given order (from left to right).

输出格式

Output the number of lines in the optimal program and the optimal penalty. Next, output the program itself, one command per line. If there are several programs with minimal penalty, output any of them (you have only to minimize the penalty).

输入输出样例

  • 输入#1

    7 2
    1 2 2 4 2 1 2
    

    输出#1

    11 4
    b=1
    print(b)
    a=2
    print(a)
    print(a)
    b=4
    print(b)
    print(a)
    b=1
    print(b)
    print(a)
    
  • 输入#2

    6 3
    1 2 3 1 2 3
    

    输出#2

    9 4
    c=1
    print(c)
    b=2
    print(b)
    a=3
    print(a)
    print(c)
    print(b)
    print(a)
    
首页