CF71E.Nuclear Fusion

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is the following puzzle popular among nuclear physicists.

A reactor contains a set of nn atoms of some chemical elements. We shall understand the phrase "atomic number" as the number of this atom's element in the periodic table of the chemical elements.

You are allowed to take any two different atoms and fuse a new one from them. That results in a new atom, whose number is equal to the sum of the numbers of original atoms. The fusion operation can be performed several times.

The aim is getting a new pregiven set of kk atoms.

The puzzle's difficulty is that it is only allowed to fuse two atoms into one, it is not allowed to split an atom into several atoms. You are suggested to try to solve the puzzle.

输入格式

The first line contains two integers nn and kk ( 1<=k<=n<=171<=k<=n<=17 ). The second line contains space-separated symbols of elements of nn atoms, which are available from the start. The third line contains space-separated symbols of elements of kk atoms which need to be the result of the fusion. The symbols of the elements coincide with the symbols from the periodic table of the chemical elements. The atomic numbers do not exceed 100100 (elements possessing larger numbers are highly unstable). Some atoms can have identical numbers (that is, there can be several atoms of the same element). The sum of numbers of initial atoms is equal to the sum of numbers of the atoms that need to be synthesized.

输出格式

If it is impossible to synthesize the required atoms, print "NO" without the quotes. Otherwise, print on the first line «YES», and on the next kk lines print the way of synthesizing each of kk atoms as equations. Each equation has the following form: " x1x_{1} + x2x_{2} + ...... + xtx_{t} -> yiy_{i} ", where xjx_{j} is the symbol of the element of some atom from the original set, and yiy_{i} is the symbol of the element of some atom from the resulting set. Each atom from the input data should occur in the output data exactly one time. The order of summands in the equations, as well as the output order does not matter. If there are several solutions, print any of them. For a better understanding of the output format, see the samples.

输入输出样例

  • 输入#1

    10 3
    Mn Co Li Mg C P F Zn Sc K
    Sn Pt Y
    

    输出#1

    YES
    Mn+C+K-&gt;Sn
    Co+Zn+Sc-&gt;Pt
    Li+Mg+P+F-&gt;Y
    
  • 输入#2

    2 1
    H H
    He
    

    输出#2

    YES
    H+H-&gt;He
    
  • 输入#3

    2 2
    Bk Fm
    Cf Es
    

    输出#3

    NO
    

说明/提示

The reactions from the first example possess the following form (the atomic number is written below and to the left of the element):

To find a periodic table of the chemical elements, you may use your favorite search engine.

The pretest set contains each of the first 100100 elements of the periodic table at least once. You can use that information to check for misprints.

首页