zoukankan      html  css  js  c++  java
  • Rebranding

    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.

    Input

    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.

    Output

    Print the new name of the corporation.

    Example

    Input
    6 1
    police
    p m
    Output
    molice
    Input
    11 6
    abacabadaba
    a b
    b c
    a d
    e g
    f a
    b b
    Output
    cdcbcdcfcdc

    Note

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

    并没有理解题目意思,莫名其妙就过了 - -!

     1 #include <iostream>
     2 using namespace std;
     3 #include<string.h>
     4 #include<set>
     5 #include<stdio.h>
     6 #include<math.h>
     7 #include<queue>
     8 #include<map>
     9 #include<algorithm>
    10 #include<cstdio>
    11 #include<cmath>
    12 #include<cstring>
    13 #include <cstdio>
    14 #include <cstdlib>
    15 #include<cstring>
    16 char a[200100],b[30],c[3];
    17 int main()
    18 {
    19     int n,m;
    20     cin>>n>>m;
    21     cin>>a;
    22     memset(b,0,sizeof(b));
    23     while(m--)
    24     {
    25         cin>>c[0]>>c[1];
    26         if(c[0]==c[1])
    27             continue;
    28         int flag1=0,flag2=0;
    29         for(int i=0;i<30;i++)
    30         {
    31             if(b[i]==c[0])
    32                {
    33                     b[i]=c[1];
    34                    flag1=1;
    35                }
    36             else if(b[i]==c[1])
    37                 {
    38                     b[i]=c[0];
    39                     flag2=1;
    40                 }
    41         }
    42         if(!flag1)
    43             b[c[0]-'a']=c[1];
    44         if(!flag2)
    45             b[c[1]-'a']=c[0];
    46     }
    47     for(int i=0;i<n;i++)
    48     {
    49             if(b[a[i]-'a']!=0)
    50                 a[i]=b[a[i]-'a'];
    51     }
    52             cout<<a<<endl;
    53     return 0;
    54 }
    View Code
  • 相关阅读:
    【Linux】Apache服务配置
    【Linux】LAMP环境搭建(简易版)
    【Linux】网络应用
    【Linux】系统管理
    【Linux】Linux(一)Linux常用命令
    【php】PDO
    【php】COOKIE和SESSION
    【php】面向对象(五)
    【php】面向对象(四)
    【php】面向对象(三)
  • 原文地址:https://www.cnblogs.com/dulute/p/7288954.html
Copyright © 2011-2022 走看看