【HDOJ】1483 Automatic Correction of Misspellings
水模拟题。
/* 1483 */
#include <cstdio>
#include <cstring>
#include <cstdlib> #define MAXN 10005 typedef struct {
char s[];
int len;
} node_t; node_t node[MAXN];
char s[];
int len, v;
int n, m;
int flag; int abs(int x) {
return x< ? -x:x;
} int min(int a, int b) {
return a<b ? a:b;
} int max(int a, int b) {
return a<b ? a:b;
} void solve() {
int i, j, k, p, tmp;
int stack[], top;
flag = ; // check if is correct
for (i=; flag&&i<n; ++i) {
if (node[i].len==len) {
// swap 2 char or 1 char wrong or just the same
k = ;
top = ;
for (j=; k<=&&j<len; ++j) {
if (node[i].s[j] != s[j]) {
stack[top++] = j;
++k;
}
}
if (k == ) {
flag = ;
v = i;
break;
} else if (k== && flag>) {
flag = ;
v = i;
} else if (k== && flag>) {
if (node[i].s[stack[]]==s[stack[]] && node[i].s[stack[]]==s[stack[]]) {
flag = ;
v = i;
}
}
} else if (flag> && node[i].len-len==) {
// one letter is missing
bool st = true;
for (j=k=; k<node[i].len; ++k) {
if (node[i].s[k] == s[j])
++j;
else if (st)
st = false;
else
break;
}
if (k >= node[i].len) {
flag = ;
v = i;
}
} else if (flag> && len-node[i].len==) {
// too much
bool st = true;
for (k=,j=; j<len; ++j) {
if (node[i].s[k] == s[j])
++k;
else if (st)
st = false;
else
break;
}
if (j>=len) {
flag = ;
v = i;
}
}
}
} int main() {
int i, j, k, tmp; #ifndef ONLINE_JUDGE
freopen("data.in", "r", stdin);
#endif while (scanf("%d", &n) != EOF) {
for (i=; i<n; ++i) {
scanf("%s", node[i].s);
node[i].len = strlen(node[i].s);
}
scanf("%d", &m);
while (m--) {
scanf("%s", s);
len = strlen(s); solve();
if (flag == )
printf("%s is unknown\n", s);
else if (flag == )
printf("%s is correct\n", s);
else if (flag == )
printf("%s is a misspelling of %s\n", s, node[v].s);
}
} return ;
}
【HDOJ】1483 Automatic Correction of Misspellings的更多相关文章
- 【HDOJ】4729 An Easy Problem for Elfness
其实是求树上的路径间的数据第K大的题目.果断主席树 + LCA.初始流量是这条路径上的最小值.若a<=b,显然直接为s->t建立pipe可以使流量最优:否则,对[0, 10**4]二分得到 ...
- 【HDOJ】【3506】Monkey Party
DP/四边形不等式 裸题环形石子合并…… 拆环为链即可 //HDOJ 3506 #include<cmath> #include<vector> #include<cst ...
- 【HDOJ】【3516】Tree Construction
DP/四边形不等式 这题跟石子合并有点像…… dp[i][j]为将第 i 个点开始的 j 个点合并的最小代价. 易知有 dp[i][j]=min{dp[i][j] , dp[i][k-i+1]+dp[ ...
- 【HDOJ】【3480】Division
DP/四边形不等式 要求将一个可重集S分成M个子集,求子集的极差的平方和最小是多少…… 首先我们先将这N个数排序,容易想到每个自己都对应着这个有序数组中的一段……而不会是互相穿插着= =因为交换一下明 ...
- 【HDOJ】【2829】Lawrence
DP/四边形不等式 做过POJ 1739 邮局那道题后就很容易写出动规方程: dp[i][j]=min{dp[i-1][k]+w[k+1][j]}(表示前 j 个点分成 i 块的最小代价) $w(l, ...
- 【HDOJ】【3415】Max Sum of Max-K-sub-sequence
DP/单调队列优化 呃……环形链求最大k子段和. 首先拆环为链求前缀和…… 然后单调队列吧<_<,裸题没啥好说的…… WA:为毛手写队列就会挂,必须用STL的deque?(写挂自己弱……s ...
- 【HDOJ】【3530】Subsequence
DP/单调队列优化 题解:http://www.cnblogs.com/yymore/archive/2011/06/22/2087553.html 引用: 首先我们要明确几件事情 1.假设我们现在知 ...
- 【HDOJ】【3068】最长回文
Manacher算法 Manacher模板题…… //HDOJ 3068 #include<cstdio> #include<cstring> #include<cstd ...
- 【HDOJ】【1512】Monkey King
数据结构/可并堆 啊……换换脑子就看了看数据结构……看了一下左偏树和斜堆,鉴于左偏树不像斜堆可能退化就写了个左偏树. 左偏树介绍:http://www.cnblogs.com/crazyac/arti ...
随机推荐
- Linux守护进程详解(init.d和xinetd)
一 Linux守护进程 Linux 服务器在启动时需要启动很多系统服务,它们向本地和网络用户提供了Linux的系统功能接口,直接面向应用程序和用户.提供这些服务的程序是由运行在后台的守护进程来执行的. ...
- MySQL Error Handling in Stored Procedures---转载
This tutorial shows you how to use MySQL handler to handle exceptions or errors encountered in store ...
- apache配置php
第一部分:安装apache 1 .安装apache软件,custom 选全部,安装目录为: F:\Apache2.2\ 2.默认为80端口(如冲突,要学会修改端口) 输入:http://localho ...
- C#总结项目《影院售票系统》编写总结一
C#学习经历从基本语法结构到窗体再到面向对象终于走完了.NET初级程序员的道路,做为品德优良好学生更不能落下课程的总结项目-某某鸟<影院售票系统>.用了大概一天半的时间做完这个练手项目,先 ...
- angularJS function
angular.bootstrap 启动Angular angular.element 相当于轻量的JQuery 使用方法: angular.element('#qq'); angular.eleme ...
- padding and margin.
padding is the space between the content and the border, whereas margin is the space outside the bor ...
- SQL SERVER将指定表中的指定字段按照(,)逗号分隔
不开心呀,早知道不跳了,一跳跳坑里来了. 使用方式: DECLARE @ConsigneeAddressId INT; SET @ConsigneeAddressId = 1; SELECT * F ...
- 请教如何实现UITextField值变化的实时监视
上网搜索以后发现基本的处理方法大概有三种1.KVO方式[textField addObserver:self forKeyPath:@"text" options:0 contex ...
- Jmeter软件测试1--webservice测试
写在前言 程序猿一枚,原本就是负责安安静静的撸代码,后来公司让兼任下测试的工作,还得照顾下面的几个测试兄弟,无奈本人毫无软件测试理论知识,下面的测试兄弟也是初级水平,又面临公司要求做webservic ...
- JS获取IP
新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js新浪多地域测试方法:http://int.dpool.s ...