码迷,mamicode.com
首页 > 其他好文 > 详细

poj 3158 Kickdown 字符串匹配?

时间:2015-02-01 12:01:41      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

也是uva 1588

 

这种题目不禁让人想到KMP

可是这个长度才100啊想怎么暴力就怎么暴力 用的就是传说中的BF算法(brute-force)

把短串加到长串的两边 然后匹

 

swap和strncpy用的飞起不枉我重修了一遍计导和c语言

 

poj题目链接:http://poj.org/problem?id=3158

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <set>
#include <queue>
#include <stack>
#include <map>
#include <vector>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> P;

const int maxn = 310;


int main()
{
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);

    char a[maxn], b[maxn], c[maxn];
    while(scanf("%s%s", a, b) == 2)
    {
        int alen = strlen(a);
        int blen = strlen(b);

        if(alen < blen)
        {
            swap(a, b);
            swap(alen, blen);
        }
        int clen = 2*blen + alen;

        fill(c, c + blen, 1);
        strncpy(c+blen, a, alen);
        fill(c + blen + alen,c + 2*blen + alen, 1);

        int ans = alen + blen;
        for(int j = 0; j < clen-blen; j++)
        {
            bool flag = true;
            int tmp;

            for(int i = 0; i < blen && flag; i++)
            {
                if(c[j+i] - 0 + b[i] - 0 > 3)
                    flag = false;
            }

            if(flag)
            {
                if(blen <= j && j <= alen)
                {
                    ans = alen;
                    break;
                }
                else if(j < blen)
                {
                    tmp = alen + blen - j;
                    if(tmp < ans)
                        ans = tmp;
                }
                else if(j > alen)
                {
                    tmp = j;
                    if(tmp < ans)
                        ans = tmp;
                }
            }
        }

        printf("%d\n", ans);

    }


    return 0;
}

 

poj 3158 Kickdown 字符串匹配?

标签:

原文地址:http://www.cnblogs.com/dishu/p/4265279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!