[POJ1035]-Spell checker

Spell checker
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 24409 Accepted: 8905

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
题目描述:给你不超过10000行的word(word长度不超过15),然后给你字符让你判断能匹配到他给出的哪些word,如果能匹配到相同的
输出s: is correct 如果没有相同的,就按照指定的匹配方式,匹配时有三种操作:
1:去掉一个字符。
2:增加一个字符。
3:覆盖一个字符。
解题思路:
直接暴力,使用STL中的string+vector,先判断word是否相等,在判断其长度差Len:
if(Len==0)
    那么就肯定为替换,这种情况直接一个一个一次比较就行了。
else if(Len==-1||)
    这种情况就是增加或者删除一个字符了。
温情提示:别用string s[],这种字串组很耗时,我第一次就用的string s[],直接TLE,换vector就不会超时。
//head.h
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <cmath>
#include <ctime>
#include <algorithm>
#include <string>
#include <memory>
#include <string>
#include <list>
#include <queue>
#include <deque>
#include <vector>
#include <stack>
#include <utility>
#include <set>
#include <map>
#include <iterator>
#include <fstream>
#define LOCAL

#ifndef LOCAL
#include "head.h"
#endif
using namespace std;
const int maxn = 100000;
int main()
{
	vector<string> s;
	string tmp;
	// freopen("data1035.in","r",stdin);
	while(true)
	{
		cin >> tmp;
		if(tmp=="#")
			break;
		s.push_back(tmp);
	}
	while(true)
	{
		bool flag=false;
		cin >> tmp;
		if(tmp=="#") break;
		for(int i = 0;i < s.size();++ i)
		{
			if(tmp == s[i])
			{
				flag=true;
				break;
			}
		}
		if(flag)
		{
			cout << tmp << " is correct\n";
			continue;
		}
		cout << tmp << ":";
		int len = 0;
		for(int i = 0;i < s.size();++ i)
		{
			len = tmp.length() - s[i].length();
			if(len > 1|| len < -1)
				continue;
			int c=0;
			if(len == 0)//长度差相等
			{
				for(int j = 0;j < tmp.length();++ j)
					if(tmp[j]!=s[i][j])
						c++;
				if(c==1)
					cout << " " << s[i];
			}
			else if(len == -1)//删除一个字符,
			{
				c=0;
				for(int j = 0;j < s[i].length();++ j)
					if(tmp[c]==s[i][j])
					{
						c++;
					}
				if(c == tmp.length())
					cout << " " << s[i];
			}
			else if(len == 1)//增加一个字符
			{
				c=0;
				for(int j = 0;j < tmp.length();++ j)
					if(tmp[j]==s[i][c])
					{
						c++;
					}
				if(c == s[i].length())
					cout << " " << s[i];
			}
		}
		cout << endl;

	}
	return 0;
}




                
源码地址: https://pan.quark.cn/s/d1f41682e390 miyoubiAuto 米游社每日米游币自动化Python脚本(务必使用Python3) 8更新:更换cookie的获取地址 注意:禁止在B站、贴吧、或各大论坛大肆传播! 作者已退游,项目不维护了。 如果有能力的可以pr修复。 小引一波 推荐关注几个非常可爱有趣的女孩! 欢迎B站搜索: @嘉然今天吃什么 @向晚大魔王 @乃琳Queen @贝拉kira 第三方库 食用方法 下载源码 在Global.py中设置米游社Cookie 运行myb.py 本地第一次运行时会自动生产一个文件储存cookie,请勿删除 当前仅支持单个账号! 获取Cookie方法 浏览器无痕模式打开 http://user.mihoyo.com/ ,登录账号 按,打开,找到并点击 按刷新页面,按下图复制 Cookie: How to get mys cookie 当触发时,可尝试按关闭,然后再次刷新页面,最后复制 Cookie。 也可以使用另一种方法: 复制代码 浏览器无痕模式打开 http://user.mihoyo.com/ ,登录账号 按,打开,找到并点击 控制台粘贴代码并运行,获得类似的输出信息 部分即为所需复制的 Cookie,点击确定复制 部署方法--腾讯云函数版(推荐! ) 下载项目源码和压缩包 进入项目文件夹打开命令行执行以下命令 xxxxxxx为通过上面方式或取得米游社cookie 一定要用双引号包裹!! 例如: png 复制返回内容(包括括号) 例如: QQ截图20210505031552.png 登录腾讯云函数官网 选择函数服务-新建-自定义创建 函数名称随意-地区随意-运行环境Python3....
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值