zoukankan      html  css  js  c++  java
  • Codeforces Round #327 (Div. 2) B. Rebranding 水题

    B. Rebranding

    Time Limit: 20 Sec

    Memory Limit: 256 MB

    题目连接

    http://codeforces.com/contest/591/problem/B

    Description

    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.


    Sample Input

    6 1
    police
    p m

    Sample Output

    molice

    HINT

    题意

    长度为n的字符,有m次操作,每次操作会将所有的x字符变成y字符,将所有的y字符变成x字符

    题解:

    变化,我们不要在原来的长度为n的字符里面去变,我们就在26个字符里面变就好了

    复杂度是mO(26)或者mO(1)

    代码

    #include<iostream>
    #include<stdio.h>
    using namespace std;
    
    int a[30];
    int b[30];
    string s,x,y;
    int main()
    {
        int n,m;
        cin>>n>>m;
        cin>>s;
        for(int i=0;i<26;i++)
            a[i]=b[i]=i;
        for(int i=0;i<m;i++)
        {
            cin>>x>>y;
            if(x[0]==y[0])continue;
            swap(a[b[x[0]-'a']],a[b[y[0]-'a']]);
            swap(b[x[0]-'a'],b[y[0]-'a']);
        }
        for(int i=0;i<n;i++)
        {
            int d = (s[i]-'a');
            printf("%c",a[d]+'a');
        }
        printf("
    ");
    }
  • 相关阅读:
    css 控制溢出文本显示省略号效果
    限制input 文本框复制粘贴
    charCodeAt()方法
    背景全透明 background: transparent
    jQuery 双击事件(dblclick)时,不触发单击事件(click)
    html textarea(文本域)自动换行
    input 文本框无法输入 有光标
    双击鼠标滚动屏幕的代码
    ABP 日志审计 返回值开启 循环引用序列化异常 Self referencing loop detected
    浏览器相关知识点一(前端面试准备)
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4910216.html
Copyright © 2011-2022 走看看