• 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("
    ");
    }
  • 相关阅读:
    [GIT]指定分支下创建分支
    [架构]辨析: 高可用 | 集群 | 主从 | 负载均衡 | 反向代理 | 中间件 | 微服务 | 容器 | 云原生 | DevOps
    [Linux]常用命令之【vi/grep/find】
    [Linux]常用命令之【netstat/ps/lsof/ss/kill/】
    [Linux]常用命令之【nl/sed/awk/wc/xargs】
    移动端vw页面适配方案在vue项目中的应用
    关于跨域,你应该知道的
    关于call、apply和bind,请看这篇
    JavaScript数组常用API方法汇总
    JS浅拷贝与深拷贝实现方式
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4910216.html
Copyright © 2020-2023  润新知