Spell checker
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 16675   Accepted: 6087

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

Source

 
 
题意:给一个字典,给一些词。判断这些词是否拼写正确。就是如果在字典里找到了这个词就是正确,输出" %s(这个词) is correct"。如果没找到,就判断字典里有没有
           和这个词接近的,输出这些词。接近有三层意思:1、可以是在这个词里增加任意一个字母,判断字典里是否存在这个新单词。2、可以是去掉任意一个字母,判断字
           典里是否存在这个新单词。3、可以是任意改变其中的一个字母,找字典里有无这个新单词。碰到接近的词就记录下来,这是输入中词可能拼错的正确写法。按题意
           输出即可。(就是个判词系统)
分析:模拟+暴力!增加一个字母判断有无这个词,前提是这个词比字典里正确的词少一个字母且其余的字母都相同。同理,减少一个字母,前提这个词比字典里正确的词
           多一个字母且其余的字母都相同。改动一个词,要求待判断的词与正确的词长度相同且只有一个字母不一样。在字典里找得到输入词的情况直接用strcmp()。
感想:输入的写法需要注意。用new动态内存分配不怎么熟悉啊。。。。囧~!!!还有要记得delete释放空间。。
 
据说这题还可以用字典树写。可惜我还要先学 “字典树”~!
 
代码:
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std; char dict[10005][20];
char word[55][20];
int dictnum,wordnum; void Input()
{
while(scanf("%s",&dict[dictnum])&&dict[dictnum++][0]!='#');
while(scanf("%s",&word[wordnum])&&word[wordnum++][0]!='#');
dictnum--; //剔除“#”
wordnum--;
} bool Change(char *dict,char *word)
{
int dif=0;
while(*word)
{
if(*(word++)!=*(dict++))
{
dif++;
if(dif>1)
return false;
}
}
return true;
} bool Add(char *dict,char *word)
{
int dif=0;
while(*dict)
{
if(*dict!=*word)
{
dict++;
dif++;
if(dif>1)
return false;
}
else
{
dict++;
word++;
}
}
return true;
} bool Del(char *dict,char *word)
{
int dif=0;
while(*word)
{
if(*word!=*dict)
{
word++;
dif++;
if(dif>1)
return false;
}
else
{
word++;
dict++;
}
}
return true;
} int main()
{
Input();
int *dictlen=new int[dictnum];
for(int i=0;i<dictnum;i++)
dictlen[i]=strlen(dict[i]);
for(int j=0;j<wordnum;j++)
{
int len=strlen(word[j]);
int *address=new int[dictnum];
int pa=0;
int flag=false; for(int k=0;k<dictnum;k++)
{
if(len==dictlen[k])
{
if(strcmp(dict[k],word[j])==0)
{
flag=true;
break;
}
else if(Change(dict[k],word[j]))
address[pa++]=k;
}
else if(len-dictlen[k]==1)
{
if(Del(dict[k],word[j]))
address[pa++]=k;
}
else if(dictlen[k]-len==1)
{
if(Add(dict[k],word[j]))
address[pa++]=k;
}
}
if(flag)
printf("%s is correct\n",word[j]);
else
{
printf("%s: ",word[j]);
for(int d=0;d<pa;d++)
printf("%s ",dict[address[d]]);
printf("\n");
}
delete address;
}
return 0;
}
 

11933189

fukan

1035

Accepted

424K

94MS

C++

2480B

2013-08-06 20:36:48

 

poj 1035 Spell checker ( 字符串处理 )的更多相关文章

  1. POJ 1035 Spell checker 字符串 难度:0

    题目 http://poj.org/problem?id=1035 题意 字典匹配,单词表共有1e4个单词,单词长度小于15,需要对最多50个单词进行匹配.在匹配时,如果直接匹配可以找到待匹配串,则直 ...

  2. poj 1035 Spell checker

    Spell checker Time Limit: 2000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d , %I64u   J ...

  3. [ACM] POJ 1035 Spell checker (单词查找,删除替换添加不论什么一个字母)

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 18693   Accepted: 6844 De ...

  4. POJ 1035 Spell checker(串)

    题目网址:http://poj.org/problem?id=1035 思路: 看到题目第一反应是用LCS ——最长公共子序列 来求解.因为给的字典比较多,最多有1w个,而LCS的算法时间复杂度是O( ...

  5. poj 1035 Spell checker(水题)

    题目:http://poj.org/problem?id=1035 还是暴搜 #include <iostream> #include<cstdio> #include< ...

  6. poj 1035 Spell checker(hash)

    题目链接:http://poj.org/problem?id=1035 思路分析: 1.使用哈希表存储字典 2.对待查找的word在字典中查找,查找成功输出查找成功信息 3.若查找不成功,对word增 ...

  7. POJ 1035 Spell checker (模拟)

    题目链接 Description You, as a member of a development team for a new spell checking program, are to wri ...

  8. POJ 1035 Spell checker 简单字符串匹配

    在输入的单词中删除或替换或插入一个字符,看是否在字典中.直接暴力,172ms.. #include <stdio.h> #include <string.h> ]; ][], ...

  9. POJ1035——Spell checker(字符串处理)

    Spell checker DescriptionYou, as a member of a development team for a new spell checking program, ar ...

随机推荐

  1. Asp.net gzip压缩的启用

    gzip压缩使用一种压缩算法,对网页内容进行压缩,从而减小了网页体积.使用gizp压缩后减小了服务器的带宽.提高了网页的打开速度.下边看看我找到的一个asp.net中启用gzip压缩方案. 首先,我们 ...

  2. php计算两个坐标(经度,纬度)之间距离的方法

    本文实例讲述了php计算两个坐标(经度,纬度)之间距离的方法.分享给大家供大家参考.具体如下: 这里使用php计算两个坐标(经度,纬度)之间的距离,返回结果为米或者千米 function distan ...

  3. mysql左连接,右连接,内连接

  4. Android升级ADT22后会报ClassNotFoundException的原因分析

    http://blog.csdn.net/huzgd/article/details/8962702 1.ADT16下,只要add to path就是add to path并export:2.ADT2 ...

  5. scrapy抓取拉勾网职位信息(八)——使用scrapyd对爬虫进行部署

    上篇我们实现了分布式爬取,本篇来说下爬虫的部署. 分析:我们上节实现的分布式爬虫,需要把爬虫打包,上传到每个远程主机,然后解压后执行爬虫程序.这样做运行爬虫也可以,只不过如果以后爬虫有修改,需要重新修 ...

  6. Bzoj1202/洛谷P2294 [HNOI2005]狡猾的商人(带权并查集/差分约束系统)

    题面 Bzoj 洛谷 题解 考虑带权并查集,设\(f[i]\)表示\(i\)的父亲(\(\forall f[i]<i\)),\(sum[i]\)表示\(\sum\limits_{j=fa[i]} ...

  7. RabbitMQ (十六) 消息队列的应用场景 (转)

    原贴 : http://blog.csdn.net/cws1214/article/details/52922267 消息队列中间件是分布式系统中重要的组件,主要解决应用耦合,异步消息,流量削锋等问题 ...

  8. [BZOJ4539][HNOI2016]树(主席树)

    4539: [Hnoi2016]树 Time Limit: 40 Sec  Memory Limit: 256 MBSubmit: 746  Solved: 292[Submit][Status][D ...

  9. 背包的第k优解[动态规划]

    From easthong ☆背包的第k优解                 描述 Description     DD 和好朋友们要去爬山啦!他们一共有 K 个人,每个人都会背一个包.这些包的容量是 ...

  10. 【并查集】BZOJ1370- [Baltic2003]Gang团伙

    [题目大意] 在某城市里住着n个人,任何两个认识的人不是朋友就是敌人,而且满足: 1. 我朋友的朋友是我的朋友: 2. 我敌人的敌人是我的朋友: 所有是朋友的人组成一个团伙.告诉你关于这n个人的m条信 ...