The name of one small but proud corporation consists of n 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 m designers. Once a company hires the i-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 xi by yi, and all the letters yi by xi. 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 xi coincides with yi. 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 n and m (1 ≤ n, m ≤ 200 000) — the length of the initial name and the number of designers hired, respectively.
The second line consists of n lowercase English letters and represents the original name of the corporation.
Next m lines contain the descriptions of the designers' actions: the i-th of them contains two space-separated lowercase English letters xi and yi.
Print the new name of the corporation.
6 1 police p m
molice
11 6 abacabadaba a b b c a d e g f a b b
cdcbcdcfcdc
In the second sample the name of the corporation consecutively changes as follows:
题目大意:
给你一个字符串,再有m个命令,每个命令要求把字符串的每个字母a改成字母b同时把字母b改成字符a,求最终结果。
解法:
这次的B题要求比以前高,直接模拟每一步会超时,虽然出题人很良心的把测试小数据弄的很好。这题打表直接表示结果,最后改一次就够了。
#include "iostream"
#include "cstdio"
using namespace std;
char name[200001];
int change[30];
int main(int argc, char* argv[])
{
char x,y;
int n,m,a,b;
scanf("%d %d",&n,&m);
for(int i=0;i<30;i++)
change[i]=i;
for(int i=0;i<n;i++)
scanf(" %c",&name[i]);
for(int i=0;i<m;i++)
{
scanf(" %c %c",&x,&y);
a=x-'a';
b=y-'a';
if(a==b)
continue;
for(int j=0;j<30;j++)
{
if(change[j]==a)
change[j]=b;
else if(change[j]==b)
change[j]=a;
}
}
for(int i=0;i<n;i++)
name[i]=change[(int)(name[i]-'a')]+'a';
for(int i=0;i<n;i++)
printf("%c",name[i]);
return 0;
}