CF1156G.Optimizer

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's analyze a program written on some strange programming language. The variables in this language have names consisting of 11 to 44 characters, and each character is a lowercase or an uppercase Latin letter, or a digit. There is an extra constraint that the first character should not be a digit.

There are four types of operations in the program, each denoted by one of the characters: $, ^, # or &.

Each line of the program has one of the following formats:

  • =, where and are valid variable names;
  • =, where , and are valid variable names, and is an operation character.

The program is executed line-by-line, and the result of execution is stored in a variable having the name res. If res is never assigned in the program, then the result will be equal to the value of res before running the program.

Two programs are called equivalent if no matter which operations do characters$, ^, # and & denote (but, obviously, performing the same operation on the same arguments gives the same result) and which values do variables have before execution of program, the value of res after running the first program is equal to the value of res after running the second program (the programs are executed independently).

You are given a program consisting of nn lines. Your task is to write a program consisting of minimum possible number of lines that is equivalent to the program you are given.

输入格式

The first line contains one integer nn ( 1n10001 \le n \le 1000 ) — the number of lines in the program.

Then nn lines follow — the program itself. Each line corresponds to the format described in the statement and has no extra whitespaces.

输出格式

In the first line print kk — the minimum number of lines in the equivalent program.

Then print kk lines without any whitespaces — an equivalent program having exactly kk lines, in the same format it is described in the statement.

输入输出样例

  • 输入#1

    4
    c=aa#bb
    d12=c
    res=c^d12
    tmp=aa$c
    

    输出#1

    2
    aaaa=aa#bb
    res=aaaa^aaaa
    
  • 输入#2

    2
    max=aaaa$bbbb
    min=bbbb^aaaa
    

    输出#2

    0
首页