CodeFoeces-499B

题目

原题链接:B. Lecture

题意

输入m次两个长度不超过10的单词,存短的那个,接下来给n个单词,输出最短的单词。看看样例就很好理解。

代码

#include
using namespace std;
map s;
int main() {
    int n,m;
    string a,b;
    scanf("%d %d",&n,&m);
    for(int i=0; i>a>>b;
        if(a.length()>b.length()) {
            s[a]=b;
        } else {
            s[b]=a;
        }
    }
    for(int i=0; i>a;
        if(s.count(a)>0) cout<

你可能感兴趣的:(CodeFoeces-499B)