词典 (noi OpenJudge)

Posted ZlycerQan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了词典 (noi OpenJudge)相关的知识,希望对你有一定的参考价值。

 

  传送门:1806:词典

  神奇的STL

 

 

 

#include <iostream>
#include <cstdio>
#include <cstring>
#include <map> 
#include <sstream>
using namespace std;
string s, s1, s2, word;
map <string, string> dic;
int main()
{
    while (getline (cin, s) && s != "")
    {
        stringstream sin (s);
        sin >> s1 >> s2;
        dic [s2] = s1;
    }
    while (cin >> word)
    {
        if (dic [word] == "")
            cout << "eh" << endl;
        else 
            cout << dic [word] << endl;
    }
    return 0;
}

 

以上是关于词典 (noi OpenJudge)的主要内容,如果未能解决你的问题,请参考以下文章

noi.openjudge的题目

NOI OpenJudge 1.13.19 啤酒厂选址 代码查错与疑问

OpenJudge NOI 4976 硬币

整理小朋友在noi.openjudge上的作业

2971 抓住那头牛 noi.openjudge

noi openjudge 1768:最大子矩阵