码迷,mamicode.com
首页 > 其他好文 > 详细

【POJ 2503】Babelfish(水题)stl map存取即可

时间:2019-09-06 17:26:39      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:poj   line   def   cout   while   substr   std   ++   bst   

题目链接

题目链接 http://poj.org/problem?id=2503

题意

英文A <=> 方言B
输入B,求A

代码如下(G++)

#include <iostream>
#include <string.h>
#include "map"
#include "string"

using namespace std;
typedef long long ll;
double eps = 1e-7;

map <string, string> m;

int main() {
    ios::sync_with_stdio(false);

    string s;
    do{
        getline(cin,s);
        bool flag = false;
        for(int i = 0;s[i];++i){
            if(s[i] == ' '){
                m[s.substr(i+1)] = s.substr(0,i);
                break;
            }
        }
    }while(s.length());
    while(cin >> s){
        if(m.find(s) != m.end()){
            cout << m[s] << endl;
        }else{
            cout << "eh" << endl;
        }
    }
    return 0;
}

【POJ 2503】Babelfish(水题)stl map存取即可

标签:poj   line   def   cout   while   substr   std   ++   bst   

原文地址:https://www.cnblogs.com/zhangjiuding/p/11476951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!