B. Lecture1000 / 字符串

Posted 幽殇默

tags:

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


https://codeforces.com/problemset/problem/499/B

#include<bits/stdc++.h>
using namespace std;
map<string,string>mp;
int main(void)
{
	int n,m; cin>>n>>m;
	for(int i=0;i<m;i++)
	{
		string a,b; cin>>a>>b;
		if(a.size()<=b.size()) mp[a]=a,mp[b]=a;
		else mp[a]=b,mp[b]=b;
	}
	string s; 
	getline(cin,s);
	getline(cin,s);
	stringstream l(s);
	while(l>>s) cout<<mp[s]<<" ";
	return 0;
}

以上是关于B. Lecture1000 / 字符串的主要内容,如果未能解决你的问题,请参考以下文章

B. String LCM1000 / 思维

B. Binary Removals1000 / 思维

B. Combinatorics Homework1000 / 思维

B. Scenes From a Memory1000 / 思维

sql数据库截取字符串函数

B. Bogosort1000 / 思维