百炼 Zipper 剪枝

  1. 写代码前一定要写好架构和一些细节。
  2. 利用变量保存字符串的ascii码值之和进行可行性剪枝。
  3. 若两字符串中所含各字母个数相同,则ascii值之和相同,反之不然,但大部分都是,可以剪枝。

题目链接:http://bailian.openjudge.cn/practice/2192/

#include<cstdio>
#include<iostream>
#include<sstream>
#include<cstdlib>
#include<cmath>
#include<cctype>
#include<string>
#include<cstring>
#include<algorithm>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<ctime>
#include<vector>
#include<fstream>
#include<list>
using namespace std;

#define ms(s) memset(s,0,sizeof(s))
typedef unsigned long long ULL;
typedef long long LL;

const int INF = 1000000000;

char str1[210];
char str2[210];
char s[420];
int len1,len2;
int c1,c2;

bool dfs(int i, int j, int k)
{
    if(s[k] == '\0')
        return true;
    if(str1[i] == '\0')
    {
        if(str2[j] == s[k])
        {
            if(dfs(i,j+1,k+1) == true)
                return true;
        }
        else
            return false;
    }
    else if(str2[j] == '\0')
    {
        if(str1[i] == s[k])
        {
            if(dfs(i+1,j,k+1) == true)
                return true;
        }
        else
            return false;
    }
    else
    {
        if(str1[i] != str2[j])
        {
            if(str1[i] == s[k])
            {
                if(dfs(i+1,j,k+1) == true)
                    return true;
            }
            else if(str2[j] == s[k])
            {
                if(dfs(i,j+1,k+1) == true)
                    return true;
            }
            else
                return false;
        }
        else
        {
            if(str1[i] != s[k])
                return false;
            else
            {
                if(dfs(i+1,j,k+1) == true)
                    return true;
                if(dfs(i,j+1,k+1) == true)
                    return true;
            }
        }
    }
    return false;
}

int main()
{
//    freopen("F:\\data.txt","r",stdin);//方便调试

    int t;
    scanf("%d", &t);
    getchar();
    for(int i = 1; i <= t; ++i)
    {
        c1 = 0;
        c2 = 0;

        scanf("%s%s%s", str1,str2,s);

        for(int i = 0; str1[i] != '\0'; i++)
            c1+=str1[i];
        for(int i = 0; str2[i] != '\0'; i++)
            c1+=str2[i];
        for(int i = 0; s[i] != '\0'; i++)
            c2+=s[i];

        if(c1!=c2 || dfs(0,0,0) == false)
            printf("Data set %d: no\n",i);
        else
            printf("Data set %d: yes\n",i);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值