传送门

模拟赛T1就自闭了(

才不会说我是去刚T2了来着

感觉非常暴力的一个题?

出题人良心开大数据范围 n=100 还是原来的n^4*26算法我也是自闭了

不过貌似跑不到n^4?

真·大力出奇迹

一发记忆化搜索 就是f[l][r][c]表示 l~r化成一个字符c是否可行

然后大力出奇迹!= =+

枚举一下i,j表示第一个字符串的前i个和第二个字符串前j个合成的最短ancestor长度

再枚举从哪个开始合并

判一下就好啦

太真实了。谁敢写这种东西嘛= =+

【本来以为全场A的后来好像也只有4个人A?最后10min30爆搜一次写对还是很开心的= =+】

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define inf 20021225
#define ll long long
using namespace std; int n,l1,l2;
char s1[110],s2[110],fr[110][2],to[110][3];
int f1[110][110][27],f2[110][110][27];
int id(char ch){return ch-'a'+1;}
int dfs(char *ch,int f[][110][27],char goal,int l,int r)
{
if(r<l) return 0;
if(~f[l][r][id(goal)]) return f[l][r][id(goal)];
if(l==r) return ch[l]==goal;
memset(f[l][r],0,sizeof(f[l][r]));
for(int i=1;i<=n;i++)
for(int k=l;k<r;k++)
if(dfs(ch,f,to[i][0],l,k)&&dfs(ch,f,to[i][1],k+1,r))
{
f[l][r][id(fr[i][0])]=1;break;
}
return f[l][r][id(goal)];
}
int fin[110][110];
int main()
{
scanf("%s%s",s1+1,s2+1);
l1=strlen(s1+1);l2=strlen(s2+1);
scanf("%d",&n);
int i;
for(i=1;i<=n;i++)
{
fr[i][0]=getchar();
while(fr[i][0]<'a'||fr[i][0]>'z') fr[i][0]=getchar();
to[i][0]=getchar();
while(to[i][0]<'a'||to[i][0]>'z') to[i][0]=getchar();
to[i][1]=getchar();
//printf("%s %s",fr[i],to[i]);
}
memset(f1,-1,sizeof(f1));
memset(f2,-1,sizeof(f2));
memset(fin,48,sizeof(fin));
fin[0][0]=0;
for(int i=1;i<=l1;i++)
for(int j=1;j<=l2;j++)
for(int k1=1;k1<=i;k1++)
for(int k2=1;k2<=j;k2++)
{
int pp;
if(fin[k1-1][k2-1]==fin[101][101]) continue;
for(pp=0;pp<26;pp++) if(dfs(s1,f1,pp+'a',k1,i) && dfs(s2,f2,pp+'a',k2,j)) break;
if(pp<26) fin[i][j]=min(fin[i][j],fin[k1-1][k2-1]+1);
}
printf("%d\n",fin[l1][l2]==fin[101][101]?-1:fin[l1][l2]);
return 0;
}
/**
ababa
aba
2
c->ba
c->cc
*/

我的码风怎么越来越奇怪了= =||

CF 49E Common ancestor的更多相关文章

  1. [LeetCode] Lowest Common Ancestor of a Binary Tree 二叉树的最小共同父节点

    Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According ...

  2. [LeetCode] Lowest Common Ancestor of a Binary Search Tree 二叉搜索树的最小共同父节点

    Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BS ...

  3. 48. 二叉树两结点的最低共同父结点(3种变种情况)[Get lowest common ancestor of binary tree]

    [题目] 输入二叉树中的两个结点,输出这两个结点在数中最低的共同父结点. 二叉树的结点定义如下:  C++ Code  123456   struct BinaryTreeNode {     int ...

  4. [LeetCode]Lowest Common Ancestor of a Binary Search Tree

    Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BS ...

  5. 数据结构与算法(1)支线任务4——Lowest Common Ancestor of a Binary Tree

    题目如下:https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/ Given a binary tree, fin ...

  6. Lowest Common Ancestor of a Binary Search Tree

    Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BS ...

  7. Lowest Common Ancestor of a Binary Tree

    Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According ...

  8. leetcode 235. Lowest Common Ancestor of a Binary Search Tree

    Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BS ...

  9. leetcode 236. Lowest Common Ancestor of a Binary Tree

    Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According ...

随机推荐

  1. JS自定义随机键盘

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  2. 富文本编辑器tinymce支持从word复制粘贴保留格式和图片的插件wordpaster

    tinymce是很优秀的一款富文本编辑器,可以去官网下载.https://www.tiny.cloud 这里分享的是它官网的一个收费插件powerpaste的旧版本源码,但也不影响功能使用. http ...

  3. MS4W安装教程

    简介 欢迎使用MS4W,这是由Gateway Geomatics开发的快速简便的安装程序,用于为Windows及其附带应用程序(如Geomoose.MapBender.Openlayers等)设置Ma ...

  4. Jenkins slave-agent.jnlp运行无反应

    在配置Jenkins的Windows节点时候,点击slave-agent.jnlp选择javaws.exe运行无反应,cmd命令执行javaws slave-agent.jnlp也不行,slave-a ...

  5. 51nod1600 Simple KMP

    题目描述 对于一个字符串|S|,我们定义fail[i],表示最大的x使得S[1..x]=S[i-x+1..i],满足(x<i) 显然对于一个字符串,如果我们将每个0<=i<=|S|看 ...

  6. [CSP-S模拟测试]:X国的军队(贪心)

    题目描述 $X$国和$Y$国开战了! 作为$X$国的军事参谋,你了解到事态的严峻性.为了更好地应付敌人,你收集到了$Y$国城市中$n$个据点的信息,你打算攻破这$n$个据点! 每个据点$i$的信息由火 ...

  7. MYSQL之union和order by分析([Err] 1221 - Incorrect usage of UNION and ORDER BY)

    我在一个业务中采用了按月的分表策略,当查询的条件跨月的时候,使用了union all汇总2个表的数据,并按插入时间倒序排列.查询并不复杂,但是当执行的时候却报错了. SELECT * FROM `ta ...

  8. JSONP的产生,和ajax的异同!

    先说说JSONP是怎么产生的: 其实网上关于JSONP的讲解有很多,但却千篇一律,而且云里雾里,对于很多刚接触的人来讲理解起来有些困难,着用自己的方式来阐释一下这个问题,看看是否有帮助. 1.一个众所 ...

  9. SVN 忽略添加文件和文件夹

    你添加的文件和文件夹是没有加入版本控制的,是你新添加的,接下来的设置才有用 忽略这个文件的方式有两种 第一种方式 添加svn:ignore    右键文件-->TortoiseSvn--> ...

  10. selenium自动化测试之【数据驱动测试】

    数据驱动测试是自动化测试的主流设计模式之一,相同的测试脚本使用不同的测试数据来执行,测试数据和测试行为进行了完全的分离,这样的测试脚本设计模式称为数据驱动.实施数据驱动测试的步骤:1.编写测试脚本,脚 ...