poj1305

#include <iostream>
#include <string>
#include <cstdio>
#include <cmath>
#include <map>
#include <algorithm>
using namespace std; 

map<string,int>mp;

#define maxn 10000 +10
string s[maxn];


int main()
{
	int top=0;
	for(;cin>>s[top];)
	{
		if(s[top]=="#")break;
		mp[s[top]]=top+1;
		top++;
	}



	string sk;
	for(;cin>>sk&&sk!="#";)
	{
		if(mp[sk]){cout<<sk+" is correct"<<endl;continue;}
		else
		{
			cout<<sk<<":";
			for(int j=0;j<top;j++)
				if(abs((int)(s[j].size()-sk.size()))<=1)
				{
					if(s[j].size()-1==sk.size())
					{
						string sf=sk;
						int ok=0;int l;
						for(l=0;l<sk.size();l++)
						{
							if(s[j][l]!=sf[l])
							{
								sf.insert(l,1,s[j][l]);   ok=1;
								break;   
							}
						}   
						if(!ok)sf.insert(l,1,s[j][l]);
						if(sf==s[j])cout<<" "+s[j];         
					}
					else if(s[j].size()==sk.size()-1)
					{
						string sf=s[j];int ok=0;int l;
						for(l=0;l<sf.size();l++)
						{
							if(sk[l]!=sf[l])
							{
								sf.insert(l,1,sk[l]);   ok=1;
								break;   
							}
						}     

						if(!ok) sf.insert(l,1,sk[l]);
						if(sf==sk)cout<<" "+s[j];
					}

					else if(s[j].size()==sk.size())
					{
						string sf=sk;
						for(int l=0;l<sf.size();l++)
						{
							if(sf[l]!=s[j][l])
							{
								sf.replace(l,1,1,s[j][l]);  
								break;
							}  

						}   
						if(sf==s[j])cout<<" "+s[j];

					}

				}

		}
		cout<<endl;
	}     

	return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章