CF591B.Rebranding

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The name of one small but proud corporation consists of nn lowercase English letters. The Corporation has decided to try rebranding — an active marketing strategy, that includes a set of measures to change either the brand (both for the company and the goods it produces) or its components: the name, the logo, the slogan. They decided to start with the name.

For this purpose the corporation has consecutively hired mm designers. Once a company hires the ii -th designer, he immediately contributes to the creation of a new corporation name as follows: he takes the newest version of the name and replaces all the letters xix_{i} by yiy_{i} , and all the letters yiy_{i} by xix_{i} . This results in the new version. It is possible that some of these letters do no occur in the string. It may also happen that xix_{i} coincides with yiy_{i} . The version of the name received after the work of the last designer becomes the new name of the corporation.

Manager Arkady has recently got a job in this company, but is already soaked in the spirit of teamwork and is very worried about the success of the rebranding. Naturally, he can't wait to find out what is the new name the Corporation will receive.

Satisfy Arkady's curiosity and tell him the final version of the name.

输入格式

The first line of the input contains two integers nn and mm ( 1<=n,m<=2000001<=n,m<=200000 ) — the length of the initial name and the number of designers hired, respectively.

The second line consists of nn lowercase English letters and represents the original name of the corporation.

Next mm lines contain the descriptions of the designers' actions: the ii -th of them contains two space-separated lowercase English letters xix_{i} and yiy_{i} .

输出格式

Print the new name of the corporation.

输入输出样例

  • 输入#1

    6 1
    police
    p m
    

    输出#1

    molice
    
  • 输入#2

    11 6
    abacabadaba
    a b
    b c
    a d
    e g
    f a
    b b
    

    输出#2

    cdcbcdcfcdc
    

说明/提示

In the second sample the name of the corporation consecutively changes as follows:

首页