Letter gaps

Posted AntiQuality

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Letter gaps相关的知识,希望对你有一定的参考价值。

需要一定技巧的搜索题

题目描述

记得做过这样一道题

Ponder This Challenge:
In the string CABACB, each letter appears exactly twice and the number of characters between the "A"s is one, between the "B"s is two, and between the "C"s is three. The same problem with the letters A-E cannot be solved, but adding a space (in the form of a hyphen) allows it to be solved. For example, in the string ADAEC-DBCEB, the number of characters between the "A"s is one, between the "B"s is two, between the "C"s is three (counting the space), between the "D"s is four, and between the "E"s is five. Find a string of letters (A-Z) and "-" whose length is no more than 53 characters, where each of the 26 letters A-Z appears exactly twice, and there is one character between the "A"s, two between the "B"s ... and 26 between the "Z"s.

现在输入 n26,你需要输出一个对于前 n 个大写字母的长度不超过 2n+1 的解。

空格(space)用连字符(hyphen) - 表示。

数据规模与约定

共 25 个数据,2n26

  时间限制:1s

  空间限制:256MB


题目分析

题目大意

构造有前n个大写字母的字符串:字符串需要满足‘A‘和‘A‘之间有一个字符,‘B‘和‘B‘之间有两个字符……字符串之中最多允许有一个空格。

NPC

显然这是一道NPC问题,那么考虑怎么搜索。

搜索一  暴力的暴力搜索

我们使用一个2*n+1长度的a[]数组保存这个字符串;n+1大小的vis[]数组检验第i个字符使用了几次

接下去DFS每一个位置、枚举每一个可以使用的字符。直到我们dfs完了所有字符,再从头检查这个字符是不是合法的。

这种原始方法已经是枚举所有的方案数了,速度可想而知。

1s跑出的答案:2-5个

优化一  每次投放两个字符

既然合法的充要条件是两个第i个字母之间相隔i个字符,为什么不在DFS时候这样处理呢?

1s跑出的答案:2-13个

优化二  倒着枚举投放字符

由于题目的特殊性质,显然可以发现:如果正着枚举,很容易出现字符之间已经挤得满满当当,却检验不合法,因此此后必须搜索很多无用的状态。

因此我们倒着来。这样可以使每一对已确定下来的字符之间有大量间隔,这样能够更快速地搜索出可行解。

1s跑出的答案:2-16个

搜索二  换个角度dfs

即便使用了以上两个优化、即便你卡常技巧再高超,抱歉搜索到n=20左右效率又奇低无比了。

实际上,搜索一所面对的dfs对象决定了效率的低下。这和dp其实很相像,看似差之毫厘的dp方程在效率上却有很大的差别。

 

以上是关于Letter gaps的主要内容,如果未能解决你的问题,请参考以下文章

17. Letter Combinations of a Phone Number

ImportError:无法导入名称 get_column_letter

UVa 1644 Prime Gap (水题,暴力)

Python调用:‘get_column_letter‘错误

Java AWT 绘制瓷砖 laves gap

16 On Large-Batch Training for Deep Learning: Generalization Gap and Sharp Minima 1609.04836v1(示例代码