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

Posted zhangjiuding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 2503Babelfish(水题)stl map存取即可相关的知识,希望对你有一定的参考价值。

题目链接

题目链接 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 2503Babelfish(水题)stl map存取即可的主要内容,如果未能解决你的问题,请参考以下文章

POJ2503 Babelfish

POJ 2503.Babelfish

Babelfish POJ - 2503

POJ 2503 Babelfish

poj 2503 Babelfish

POJ2503-Babelfish-二分