题解 | #魔咒词典#

魔咒词典

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

#include <iostream>
#include <map>
using namespace std;

map<string, string> magics;

int main() {
    string str;
    while (getline(cin, str) && str != "@END@") {
        int pos = str.find(']');
        string s1 = str.substr(0, pos + 1);
        string s2 = str.substr(pos + 2);
        magics[s1] = s2;
        magics[s2] = s1;
    }

    int n;
    cin >> n;
    getchar();//帮getline吃掉回车
    while(n --){
        getline(cin, str);
        string res = magics[str];
        if(res == "")
            cout << "what?" << endl;
        else{
            if(res[0] == '[')
                cout << res.substr(1, res.size() - 2) << endl;
            else
                cout << res << endl;
        }
    }

    return 0;
}

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
头像
11-09 12:17
清华大学 C++
out11Man:小丑罢了,不用理会
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务