Spell checker POJ 1035 字符串
Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 25426 | Accepted: 9300 |
Description
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 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
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
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<string>
using namespace std;
typedef long long LL;
#define MAXN 10003
/*
给定词典中的单词,要求检查合法的单词
如果词典中单词与该单词长度相等检查能否替换
否则如果两个单词长度之差绝对值小于一 检查能否添加删除
*/
vector<string> dict;
bool f = false;
bool Compare(string &s,string &l)
{
string::iterator p1 = s.begin(),p2 = l.begin();
int cnt = ;
while(p1!=s.end())
{
if(*p1!=*p2)
{
p2++;
cnt++;
if(cnt>)
return false;
}
else
{
p1++;
p2++;
}
}
return true;
}
bool Replace(string &word,string &dict)
{
int l = word.size();
int cnt = ;
for(int i=;i<l;i++)
{
if(word[i]!=dict[i])
cnt++;
if(cnt>)
return false;
}
return true;
}
int main()
{
dict.resize();
int cnt = ;
while(cin>>dict[cnt++])
{
if(dict[cnt-][]=='#')
{
cnt--;
break;
}
}
string word;
while(cin>>word)
{
vector<string> ans;
if(word[]=='#')
break;
int l1 = word.size();
f = false;
bool find = false;
for(int i=;i<cnt;i++)
{
int l2 = dict[i].size();
if(l1==l2)
{
if(word==dict[i])
{
find = true;
f = false;
break;
}
if(Replace(word,dict[i]))
{
f = true;
ans.push_back(dict[i]);
}
}
else if(l1==l2+)
{
if(Compare(dict[i],word))
{
f = true;
ans.push_back(dict[i]);
}
}
else if(l2==l1+)
{
if(Compare(word,dict[i]))
{
f = true;
ans.push_back(dict[i]);
}
}
}
cout<<word;
if(!f&&find)
cout<<" is correct";
else
{
cout<<":";
for(int i=;i<ans.size();i++)
cout<<" "<<ans[i];
}
cout<<endl;
}
}
Spell checker POJ 1035 字符串的更多相关文章
- Spell checker - poj 1035 (hash)
Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 22541 Accepted: 8220 Description Yo ...
- poj 1035 Spell checker ( 字符串处理 )
Spell checker Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 16675 Accepted: 6087 De ...
- POJ 1035:Spell checker
Spell checker Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 22574 Accepted: 8231 De ...
- poj 1035 Spell checker
Spell checker Time Limit: 2000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d , %I64u J ...
- [ACM] POJ 1035 Spell checker (单词查找,删除替换添加不论什么一个字母)
Spell checker Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18693 Accepted: 6844 De ...
- POJ1035——Spell checker(字符串处理)
Spell checker DescriptionYou, as a member of a development team for a new spell checking program, ar ...
- poj 1035 纯正的字符串水
Spell checker Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 22673 Accepted: 8258 De ...
- POJ 1035 代码+具体的目光
Spell checker Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 19319 Accepted: 7060 Descri ...
- Spell checker
Spell checker Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Subm ...
随机推荐
- java网络编程UDP
图片来自网络 [发送端] import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSoc ...
- nginx初相识
在本机上下载了一个nginx,版本为1.14.0. 安装: 对于安装比较简单,下载后解压到指定目录,目录结构如下 启动: 最简单的直接双击nginx.exe,有黑窗一闪而过,不要怀疑,看一下logs的 ...
- 【WIP】Bootstrap nav
创建: 2017/09/28 更新: 2017/10/14 标题加上[WIP]
- thinkphp vender
vender在thinkphp里面时引入系统的类库的意思,具体用法如下. Vendor('Classes.PHPExcel');表示引入vendor目录下的classes文件夹下面的phpexcel文 ...
- Python基础数据类型(五) dict字典
字典dict{} 字典数字自动排序 enumerate 枚举 for i,k in enumerate(dic,1) #第二个参数默认不写就是0 ---枚举 print(i,k) dict,以{}来表 ...
- ACM_情人节
情人节 Time Limit: 2000/1000ms (Java/Others) Problem Description: 某发每天都在各大群水啊水,然后认识了很多崇拜他的妹子,毕竟是数学专业.这不 ...
- [转]Linux之ACL权限
转自:http://www.2cto.com/os/201110/108736.html 引言 前面的内容中,我们讲到传统的权限仅有三种身份(owner,group,others)搭配三种权限(r,w ...
- [转]Linux 正则表达式详解
转自:http://www.jb51.net/article/42989.htm 一.linux文本查找命令 在说linux正规表达式之前,还介绍下linux中查找文本文件常用的三个命令: 1.gre ...
- Android popwindow 消失监听
LisviewPop.setOnDismissListener(new OnDismissListener() { @Override public void onDismiss() { //改变显示 ...
- JS——i++与++i
先赋值后自增: var i = 0; var n1 = i++; alert(i);//返回1 alert(n1);//返回0 先自增后赋值: var i = 0; var n1 = ++i; ale ...