首页 > 其他分享 >POJ 1035 Spell checker

POJ 1035 Spell checker

时间:2022-11-09 22:36:06浏览次数:49  
标签:word dictionary int Spell checker POJ words include correct

Description

You, as a member of a development team for a new spell checking program, are to write a module that will check the correctness of given words using a known dictionary of all correct words in all their forms. 
If the word is absent in the dictionary then it can be replaced by correct words (from the dictionary) that can be obtained by one of the following operations: 
?deleting of one letter from the word; 
?replacing of one letter in the word with an arbitrary letter; 
?inserting of one arbitrary letter into the word. 
Your task is to write the program that will find all possible replacements from the dictionary for every given word. 

Input

The first part of the input file contains all words from the dictionary. Each word occupies its own line. This part is finished by the single character '#' on a separate line. All words are different. There will be at most 10000 words in the dictionary. 
The next part of the file contains all words that are to be checked. Each word occupies its own line. This part is also finished by the single character '#' on a separate line. There will be at most 50 words that are to be checked. 
All words in the input file (words from the dictionary and words to be checked) consist only of small alphabetic characters and each one contains 15 characters at most. 

Output

Write to the output file exactly one line for every checked word in the order of their appearance in the second part of the input file. If the word is correct (i.e. it exists in the dictionary) write the message: " is correct". If the word is not correct then write this word first, then write the character ':' (colon), and after a single space write all its possible replacements, separated by spaces. The replacements should be written in the order of their appearance in the dictionary (in the first part of the input file). If there are no replacements for this word then the line feed should immediately follow the colon.

Sample Input

i is has have be my more contest me too if award # me aware m contest hav oo or i fi mre #

Sample Output

me is correct aware: award m: i my me contest is correct hav: has have oo: too or: i is correct fi: i

mre: more me

用了map,然后枚举每个串全部的情况。

实际效率还没有暴力快。

#include<set>
#include<map>
#include<ctime>
#include<cmath>
#include<stack>
#include<queue>
#include<bitset>
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
#define rep(i,j,k) for (int i = j; i <= k; i++)
#define per(i,j,k) for (int i = j; i >= k; i--)
#define loop(i,j,k) for (int i = j;i != -1; i = k[i])
#define lson x << 1, l, mid
#define rson x << 1 | 1, mid + 1, r
#define fi first
#define se second
#define mp(i,j) make_pair(i,j)
#define pii pair<string,string>
using namespace std;
typedef long long LL;
const int low(int x) { return x&-x; }
const double eps = 1e-8;
const int INF = 0x7FFFFFFF;
const int mod = 1e9 + 7;
const int N = 1e5 + 10;
const int read()
{
	char ch = getchar();
	while (ch<'0' || ch>'9') ch = getchar();
	int x = ch - '0';
	while ((ch = getchar()) >= '0'&&ch <= '9') x = x * 10 + ch - '0';
	return x;
}
int T, n;
char g[N][20];
map<string, int> M;
string x;
vector<int> ans;

int main()
{
	n = 1;
	while (scanf("%s", g[n]), g[n][0] != '#') M[g[n]] = n++;
	while (cin >> x, x[0] != '#')
	{
		if (M[x])
		{
			cout << x << " is correct" << endl;
			continue;
		}
		ans.clear();
		for (int i = 0; i < x.size(); i++)
		{
			char c = x[i];	
			rep(j, 0, 25) if (c != 'a' + j)
			{
				x[i] = 'a' + j;
				if (M[x]) ans.push_back(M[x]);
			}
			x[i] = c;
			string q = "";
			for (int j = 0; j < x.size(); j++)
			{
				if (j != i) q = q + x[j];
			}
			if (M[q]) ans.push_back(M[q]);
		}
		for (int i = 0; i <= x.size(); i++)
		{
			string l = "", r = "";
			for (int j = 0; j < i; j++) l += x[j];
			for (int j = i; j < x.size(); j++) r += x[j];
			rep(j, 0, 25)
			{
				string y = l + (char)('a' + j) + r;
				if (M[y]) ans.push_back(M[y]);
			}
		}
		sort(ans.begin(), ans.end());
		cout << x << ":";
		for (int i = 0; i < ans.size(); i++)
		{
			if (i && ans[i] == ans[i - 1]) continue;
			printf(" %s", g[ans[i]]);
		}
		putchar(10);
	}
	return 0;
}


标签:word,dictionary,int,Spell,checker,POJ,words,include,correct
From: https://blog.51cto.com/u_15870896/5838880

相关文章

  • POJ 2774 Long Long Message
    DescriptionThelittlecatismajoringinphysicsinthecapitalofByterland.Apieceofsadnewscomestohimthesedays:hismotherisgettin......
  • POJ 1226 Substrings
    DescriptionYouaregivenanumberofcase-sensitivestringsofalphabeticcharacters,findthelargeststringX,suchthateitherX,oritsinversecan......
  • POJ 3420 Quad Tiling
    DescriptionTiredofthe TriTiling gamefinally,Michaelturnstoamorechallengeablegame,QuadTiling:Inhowmanywayscanyoutilea4× N (1≤......
  • POJ 1837 Balance
    DescriptionGigelhasastrange"balance"andhewantstopoiseit.Actually,thedeviceisdifferentfromanyotherordinarybalance. Itorderstw......
  • POJ 2231 Moo Volume
    DescriptionFarmerJohnhasreceivedanoisecomplaintfromhisneighbor,FarmerBob,statingthathiscowsaremakingtoomuchnoise. FJ'sNcows......
  • POJ 3580 SuperMemo
    DescriptionYourfriend,JacksonisinvitedtoaTVshowcalledSuperMemoinwhichtheparticipantistoldtoplayamemorizinggame.Atfirst,thehosttells......
  • POJ 2478 Farey Sequence
    DescriptionTheFareySequenceFnforanyintegernwithn>=2isthesetofirreduciblerationalnumbersa/bwith0<a<b<=nandgcd(a,b)=1arrang......
  • POJ 3090 Visible Lattice Points
    DescriptionAlatticepoint(x, y)inthefirstquadrant(x and y areintegersgreaterthanorequalto0),otherthantheorigin,isvisiblefromtheor......
  • POJ 1284 Primitive Roots
    DescriptionWesaythatintegerx,0<x<p,isaprimitiverootmodulooddprimepifandonlyiftheset{(x i modp)|1<=i<=p-1}isequal......
  • POJ 2407 Relatives
    DescriptionGivenn,apositiveinteger,howmanypositiveintegerslessthannarerelativelyprimeton?Twointegersaandbarerelativelyprimeifth......