首页 > 其他 > 详细

【Codeforces Round #459 (Div. 2) B】 Radio Station

时间:2018-01-30 13:58:09      阅读:158      评论:0      收藏:0      [点我收藏+]

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


用map模拟一下映射就好了。

【代码】

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

int n,m;

map<string,string> dic;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n >> m;
    for (int i = 1;i <= n;i++){
        string name,ip;
        cin >> name>>ip;
        dic[ip] = name;
    }
    for (int i = 1;i <= m;i++){
        string x,y;
        cin >> x >> y;
        cout<<x<<' '<<y;
        int len = y.size();
        y = y.substr(0,len-1);
        cout<<" #"<<dic[y]<<endl;
    }
    return 0;
}

【Codeforces Round #459 (Div. 2) B】 Radio Station

原文:https://www.cnblogs.com/AWCXV/p/8384137.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!