我正在尝试solve this exercise.
我有一个解决方案,如下所示,但我收到Time Limit Exceeded
错误。我想知道为什么这段代码效率低,因为我正在进行memoization。
namespace Aibohphobia
{
class Test
{
static Dictionary<string, int> memo = new Dictionary<string, int>();
static int Main(string[] args)
{
string num = Console.ReadLine();
int N = int.Parse(num);
string input = string.Empty;
for (int i = 0; i < N; i++)
{
memo = new Dictionary<string, int>();
input = Console.ReadLine();
int count = new Test().insert(input, 0, input.Length - 1);
Console.WriteLine(count);
}
return 0;
}
int insert(string input, int start, int end)
{
int count = 0;
var key = start + "_" + end;
if (start >= end)
return 0;
if (memo.ContainsKey(key))
return memo[key];
if (input[start] == input[end])
{
count += insert(input, start + 1, end - 1);
}
else
{
int countLeft = 1 + insert(input, start + 1, end);
int countRight = 1 + insert(input, start, end - 1);
count += Math.Min(countLeft, countRight);
}
memo.Add(key, count);
return count;
}
}
}
答案 0 :(得分:1)
您在<{1}}中记住结果,这本质上是一个哈希表。这意味着每次要检索给定键的值时,都必须计算键的哈希函数。
在这种情况下,由于密钥的类型为Dictionary<string, int>
,因此散列函数的评估肯定会降低执行速度。我建议您在string
中记住您的DP值,因此您可以更快地检索所需的值。
为了实现这一目标,您将弄清楚如何将int[][] matrix
映射到strings
。您可以在此处找到有关如何执行此操作的简要教程:String Hashing for competitive programming,其中作者解释了简单的字符串哈希技术。