题解 | 字符串加密

字符串加密

https://www.nowcoder.com/practice/e4af1fe682b54459b2a211df91a91cf3

#include <bits/stdc++.h>
using namespace std;

int main() {
    string s, t;
    cin >> s >> t;
    map<char, bool> ma;
    string res;
    for (auto x: s) 
        if (!ma[x]) {
            ma[x] = true;
            res += x;
        }
    for (int i = 0; i < 26; i++) if (!ma[i + 'a']) res += i + 'a';
    for (auto x: t) cout << res[x - 'a']; 
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务