Chinaunix首页 | 论坛 | 博客
  • 博客访问: 14523868
  • 博文数量: 5645
  • 博客积分: 9880
  • 博客等级: 中将
  • 技术积分: 68081
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-28 13:35
文章分类

全部博文(5645)

文章存档

2008年(5645)

我的朋友

分类:

2008-04-28 21:06:43

下载本文示例代码
  本人与2005年12月13日凌晨参加了google中国编程挑战赛的入围阶段的赛事。虽然最终我感觉自己做出了这道级别为high到mid间的赛题,但是却发现那时入围赛事早已经结束了......。  相信有不少朋友肯定也参加了那场入围赛,所以我打算把自己的解法写出来,一则虽然题目中的测试用例是全部通过了,但这并不能保证我的解法是正确的,希望大家批评指教;二则相信其他朋友也一定有更好的解法大家一起讨论讨论。希望,这篇文章能起到抛砖引玉的效果。   一、竞赛题目 Problem Statement You are given a String[] grid representing a rectangular grid of letters. You are also given a String find, a word you are to find within the grid. The starting point may be anywhere in the grid. The path may move up, down, left, right, or diagonally from one letter to the next, and may use letters in the grid more than once, but you may not stay on the same cell twice in a row (see example 6 for clarification).You are to return an int indicating the number of ways find can be found within the grid. If the result is more than 1,000,000,000, return -1.DefinitionClass: WordPathMethod: countPathsParameters: vector < string >, stringReturns: intMethod signature: int countPaths(vector < string> grid, string find) (be sure your method is public)Constraints -grid will contain between 1 and 50 elements, inclusive. -Each element of grid will contain between 1 and 50 uppercase (''A''-''Z'') letters, inclusive. -Each element of grid will contain the same number of characters. -find will contain between 1 and 50 uppercase (''A''-''Z'') letters, inclusive.Examples0){"ABC", "FED", "GHI"}"ABCDEFGHI"Returns: 1There is only one way to trace this path. Each letter is used exactly once.1){"ABC", "FED", "GAI"}"ABCDEA"Returns: 2Once we get to the ''E'', we can choose one of two directions for the final ''A''.2){"ABC", "DEF", "GHI"}"ABCD"Returns: 0We can trace a path for "ABC", but there''s no way to complete a path to the letter ''D''.3){"AA", "AA"}"AAAA"Returns: 108We can start from any of the four locations. From each location, we can then move in any of the three possible directions for our second letter, and again for the third and fourth letter. 4 * 3 * 3 * 3 = 108.4){"ABABA", "BABAB", "ABABA", "BABAB", "ABABA"}"ABABABBA"Returns: 56448There are a lot of ways to trace this path.5){"AAAAA", "AAAAA", "AAAAA", "AAAAA", "AAAAA"}"AAAAAAAAAAA"Returns: -1There are well over 1,000,000,000 paths that can be traced.6){"AB", "CD"}"AA"Returns: 0Since we can''t stay on the same cell, we can''t trace the path at all.This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.   题目的意思大致是这样的:在类 WordPath 中编写一个原型为:int countPaths(vector < string> grid, string find)的函数,grid相当于一个字母矩阵,grid中的每个字符串含有相同个数的字母,这些字母都是大写的字母,从''A''到''Z'',grid中字母个数的范围是1-50。参数find是要求你在grid中搜索路径的字符串,其同样只含有''A''到''Z''的字符,其个数范围同样是1-50。搜索起点可以从grid中的任何一点开始,然后可以向上,向下,向左,向右,以及对角线移动一格。grid中的每个位置的字母可以多次使用。但路径不能在相同位置停留两次(见用例6)。返回值是个整型数据,表示搜索到的路径总数数。如果这个数值大于1,000,000,000, 则返回-1。  二、我的解题步骤  第一步.使用人脑按照题目要求,实际计算一遍。  这里先用例1为例。在例1的find字符串的第一个字符是''A'',我们可以看到在相应的grid中,''A''在两个位置上出现,由于起点不限,所以我们搜索到的起点有2个;find的第2个字符是B,我们可以看到grid中只出现了1个B,而按照题目要求移动的话,显然只有左上角的那个A可以移动到这个B的位置。我们以次类推一值移动到E,都是唯一一条路经,但最后一个字符还是A,这时按照题目要求,2个A都可以从E移动到达,并且题目也说明每个位置可以多次移动停留,所以这时2个A都符合条件。这样find在grid中的移动路径共有2条,即返回值为2。  第二步,把上述思维过程,转化为计算机模型。  1、处理find中每个字符在grid中出现的位置  1.1 数据结构  1.1.1   我们可以看到find中的每个位置的字母可以在grid中多次出现,所以我们有必要把这些位置都纪录下来以便下一步的判断。grid中的每个字母可以这样标记其位置:以字符串序列为纵坐标(0开始),以字母在字符串中的位置为横坐标(0开始)。如用例1中的2个A的位置可以用(0,1)和(1,2)标记。我定义一个结构纪录在grid中的位置: typedef struct POINTtag{int x;int y;int count;}POS;  y表示在grid中的第几个字符串,x表示在字符串中的第几个字符。字段count在下文中再说明。  1.1.2   要保存多个位置数据,而数据个数又不确定(如例1中grid里A出现的位置有2处,而在例4中grid里A出现的位置有13处),显然使用向量(vector)保存这些位置较为合适。我用typedef重定义了这种保存位置的向量的数据类型:   typedef vector< POS > VETPOS;   find中的每一个字符都有必要使用一个VETPOS类型的变量保存其在相应grid中出现的位置,这些变量的个数显然应该和find字符串的长度相等。假设find的长度用变量int findStrLen表示,则findStrLen = find.length()。这些VETPOS类型的变量的处理和计算的过程大多相同,显然可以使用数组来集中处理。但由于每次调用的find字符串的长度未必都相等,所以这些VETPOS类型的变量同样保存到向量(vector)中更合适。代码中我是这样定义的: int findStrLen = find.length();vector < VETPOS > vec(findStrLen);  这样保存find第k个字符在grid中出现位置的向量可以用vec[k]表示了。  1.2 算法  数据结构至此定义的差不多了,接着就该考虑如何遍历grid的每一个字母,并将在find中出现的字符的位置保存到相应的位置向量中去。  1.2.1   在grid中其第i个字符串可以用grid[i]表示;而在string中其第几个字符可以用成员函数at(),或者重载运算符[]取得,如find的第i个字符可以用find.at(i)或者find[i]来获得。所以在grid中取得位置为(0,1)的字符可以用表达式grid[1][0]或者grid[1].at(0)取得。要遍历grid的每一个字母,首先要知道grid中字符串的个数,这可以调用vector的size成员函数取得,假设grid中的字符串个数为int gridSize,则gridSize=grid.size();而字符串的长度可以用string的成员函数length()取得,由于题中明确告诉我们,grid中的每个字符长度相等,所以我们只要计算其中任意一个字符串长度即可。假设grid中的每个字符长度为int gridStrLen,则gridStrLen = grid[0].length()。知道了grid中每个字符串的字符个数和总的字符串个数,我们就可以用2个嵌套的for循环遍历其中的每一个字符,代码如下: for ( int i = 0; i < gridSize; i ){ for ( int j= 0; j < gridStrLen; j ) {  char ch = grid[i].at(j);  ........ }}   1.2.2   在遍历的过程中将grid的每个位置的字符,和find中的每一个字符比较,如果相等则把该字符的位置保存到find相应位置的向量中去。假设find中的第k个字符,与grid中(j,i)处的字符相等,即if ( find[k] == grid[i].at(j) ),则把当前的位置即(j,i)保存到vec[k]中去。结合遍历grid的代码,取得find中每个字符在grid中的位置的代码如下: int findStrLen = find.length();int gridSize = grid.size();int gridStrLen = grid[0].length();vector < VETPOS> vec(findStrLen);int i,j,k;// 遍历grid中的每一个字符for ( i = 0; i < gridSize; i ){ for ( j= 0; j < gridStrLen; j ) {  for ( k=0; k< findStrLen; k )  {   char ch = find.at(k);   //如果与find中位置k的字符相等,则将相应的grid中的位置坐标保存到相应的向量中去   if ( ch == grid[i].at(j) )   {    POS ps;    ps.x =j;    ps.y = i;    //位置向量0中所有坐标的初始值为1,而其他位置向量中坐标的这个字段总会被指零后才计算    ps.count = 1;    vec[k].push_back(ps);   }  } }} 共2页。 1 2 :   本人与2005年12月13日凌晨参加了google中国编程挑战赛的入围阶段的赛事。虽然最终我感觉自己做出了这道级别为high到mid间的赛题,但是却发现那时入围赛事早已经结束了......。  相信有不少朋友肯定也参加了那场入围赛,所以我打算把自己的解法写出来,一则虽然题目中的测试用例是全部通过了,但这并不能保证我的解法是正确的,希望大家批评指教;二则相信其他朋友也一定有更好的解法大家一起讨论讨论。希望,这篇文章能起到抛砖引玉的效果。   一、竞赛题目 Problem Statement You are given a String[] grid representing a rectangular grid of letters. You are also given a String find, a word you are to find within the grid. The starting point may be anywhere in the grid. The path may move up, down, left, right, or diagonally from one letter to the next, and may use letters in the grid more than once, but you may not stay on the same cell twice in a row (see example 6 for clarification).You are to return an int indicating the number of ways find can be found within the grid. If the result is more than 1,000,000,000, return -1.DefinitionClass: WordPathMethod: countPathsParameters: vector < string >, stringReturns: intMethod signature: int countPaths(vector < string> grid, string find) (be sure your method is public)Constraints -grid will contain between 1 and 50 elements, inclusive. -Each element of grid will contain between 1 and 50 uppercase (''A''-''Z'') letters, inclusive. -Each element of grid will contain the same number of characters. -find will contain between 1 and 50 uppercase (''A''-''Z'') letters, inclusive.Examples0){"ABC", "FED", "GHI"}"ABCDEFGHI"Returns: 1There is only one way to trace this path. Each letter is used exactly once.1){"ABC", "FED", "GAI"}"ABCDEA"Returns: 2Once we get to the ''E'', we can choose one of two directions for the final ''A''.2){"ABC", "DEF", "GHI"}"ABCD"Returns: 0We can trace a path for "ABC", but there''s no way to complete a path to the letter ''D''.3){"AA", "AA"}"AAAA"Returns: 108We can start from any of the four locations. From each location, we can then move in any of the three possible directions for our second letter, and again for the third and fourth letter. 4 * 3 * 3 * 3 = 108.4){"ABABA", "BABAB", "ABABA", "BABAB", "ABABA"}"ABABABBA"Returns: 56448There are a lot of ways to trace this path.5){"AAAAA", "AAAAA", "AAAAA", "AAAAA", "AAAAA"}"AAAAAAAAAAA"Returns: -1There are well over 1,000,000,000 paths that can be traced.6){"AB", "CD"}"AA"Returns: 0Since we can''t stay on the same cell, we can''t trace the path at all.This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.   题目的意思大致是这样的:在类 WordPath 中编写一个原型为:int countPaths(vector < string> grid, string find)的函数,grid相当于一个字母矩阵,grid中的每个字符串含有相同个数的字母,这些字母都是大写的字母,从''A''到''Z'',grid中字母个数的范围是1-50。参数find是要求你在grid中搜索路径的字符串,其同样只含有''A''到''Z''的字符,其个数范围同样是1-50。搜索起点可以从grid中的任何一点开始,然后可以向上,向下,向左,向右,以及对角线移动一格。grid中的每个位置的字母可以多次使用。但路径不能在相同位置停留两次(见用例6)。返回值是个整型数据,表示搜索到的路径总数数。如果这个数值大于1,000,000,000, 则返回-1。  二、我的解题步骤  第一步.使用人脑按照题目要求,实际计算一遍。  这里先用例1为例。在例1的find字符串的第一个字符是''A'',我们可以看到在相应的grid中,''A''在两个位置上出现,由于起点不限,所以我们搜索到的起点有2个;find的第2个字符是B,我们可以看到grid中只出现了1个B,而按照题目要求移动的话,显然只有左上角的那个A可以移动到这个B的位置。我们以次类推一值移动到E,都是唯一一条路经,但最后一个字符还是A,这时按照题目要求,2个A都可以从E移动到达,并且题目也说明每个位置可以多次移动停留,所以这时2个A都符合条件。这样find在grid中的移动路径共有2条,即返回值为2。  第二步,把上述思维过程,转化为计算机模型。  1、处理find中每个字符在grid中出现的位置  1.1 数据结构  1.1.1   我们可以看到find中的每个位置的字母可以在grid中多次出现,所以我们有必要把这些位置都纪录下来以便下一步的判断。grid中的每个字母可以这样标记其位置:以字符串序列为纵坐标(0开始),以字母在字符串中的位置为横坐标(0开始)。如用例1中的2个A的位置可以用(0,1)和(1,2)标记。我定义一个结构纪录在grid中的位置: typedef struct POINTtag{int x;int y;int count;}POS;  y表示在grid中的第几个字符串,x表示在字符串中的第几个字符。字段count在下文中再说明。  1.1.2   要保存多个位置数据,而数据个数又不确定(如例1中grid里A出现的位置有2处,而在例4中grid里A出现的位置有13处),显然使用向量(vector)保存这些位置较为合适。我用typedef重定义了这种保存位置的向量的数据类型:   typedef vector< POS > VETPOS;   find中的每一个字符都有必要使用一个VETPOS类型的变量保存其在相应grid中出现的位置,这些变量的个数显然应该和find字符串的长度相等。假设find的长度用变量int findStrLen表示,则findStrLen = find.length()。这些VETPOS类型的变量的处理和计算的过程大多相同,显然可以使用数组来集中处理。但由于每次调用的find字符串的长度未必都相等,所以这些VETPOS类型的变量同样保存到向量(vector)中更合适。代码中我是这样定义的: int findStrLen = find.length();vector < VETPOS > vec(findStrLen);  这样保存find第k个字符在grid中出现位置的向量可以用vec[k]表示了。  1.2 算法  数据结构至此定义的差不多了,接着就该考虑如何遍历grid的每一个字母,并将在find中出现的字符的位置保存到相应的位置向量中去。  1.2.1   在grid中其第i个字符串可以用grid[i]表示;而在string中其第几个字符可以用成员函数at(),或者重载运算符[]取得,如find的第i个字符可以用find.at(i)或者find[i]来获得。所以在grid中取得位置为(0,1)的字符可以用表达式grid[1][0]或者grid[1].at(0)取得。要遍历grid的每一个字母,首先要知道grid中字符串的个数,这可以调用vector的size成员函数取得,假设grid中的字符串个数为int gridSize,则gridSize=grid.size();而字符串的长度可以用string的成员函数length()取得,由于题中明确告诉我们,grid中的每个字符长度相等,所以我们只要计算其中任意一个字符串长度即可。假设grid中的每个字符长度为int gridStrLen,则gridStrLen = grid[0].length()。知道了grid中每个字符串的字符个数和总的字符串个数,我们就可以用2个嵌套的for循环遍历其中的每一个字符,代码如下: for ( int i = 0; i < gridSize; i ){ for ( int j= 0; j < gridStrLen; j ) {  char ch = grid[i].at(j);  ........ }}   1.2.2   在遍历的过程中将grid的每个位置的字符,和find中的每一个字符比较,如果相等则把该字符的位置保存到find相应位置的向量中去。假设find中的第k个字符,与grid中(j,i)处的字符相等,即if ( find[k] == grid[i].at(j) ),则把当前的位置即(j,i)保存到vec[k]中去。结合遍历grid的代码,取得find中每个字符在grid中的位置的代码如下: int findStrLen = find.length();int gridSize = grid.size();int gridStrLen = grid[0].length();vector < VETPOS> vec(findStrLen);int i,j,k;// 遍历grid中的每一个字符for ( i = 0; i < gridSize; i ){ for ( j= 0; j < gridStrLen; j ) {  for ( k=0; k< findStrLen; k )  {   char ch = find.at(k);   //如果与find中位置k的字符相等,则将相应的grid中的位置坐标保存到相应的向量中去   if ( ch == grid[i].at(j) )   {    POS ps;    ps.x =j;    ps.y = i;    //位置向量0中所有坐标的初始值为1,而其他位置向量中坐标的这个字段总会被指零后才计算    ps.count = 1;    vec[k].push_back(ps);   }  } }} 共2页。 1 2 : 下载本文示例代码


一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法一道Google中国挑战赛竞赛题的解法
阅读(86) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~