一道 Google 竞赛题的解法

2016-01-29 12:16 8 1 收藏

一道 Google 竞赛题的解法,一道 Google 竞赛题的解法

【 tulaoshi.com - C语言心得技巧 】

一道 Google 竞赛题的解法

作者:roc

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com)

下载源代码

  本人于2005年12月13日凌晨参加了google中国编程挑战赛的入围阶段的赛事。虽然最终我感觉自己做出了这道级别为high到mid间的赛题,但是却发现那时入围赛事早已经结束了......
  相信 vckbase 中的不少朋友肯定也参加了那场入围赛,所以我打算把自己的解法写出来,一则虽然题目中的测试用例是全部通过了,但这并不能保证我的解法是正确的,希望大家批评指教;二则相信其他朋友也一定有更好的解法大家一起讨论讨论。希望,这篇文章能起到抛砖引玉的效果。

一、竞赛题目

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都符合条件。

来源:https://www.tulaoshi.com/n/20160129/1485365.html

延伸阅读
标签: 丰胸
动嘴营造诱人双峰 维生素C:葡萄、西柚等,防止胸部变形。 维生素E:芹菜、核桃等,有助胸部发育。 维生素A:椰菜及葵花籽油等,有利激素分泌。 维生素B:牛肉、牛奶及猪肝等,有助激素的合成。 诱人身体的最后一道屏障 内衣本身应该与时尚无关,但是由于它的功能使人产生太多的联想,所以无所不在的时尚触觉紧紧抓住了这个本应是...
天气凉了,吃一道炖菜 1.五花肉切成片,蒜和姜切成片 2.土豆削皮,切成滚刀块,放入水中泡着 3.豆角洗...
在人际交往中,你的方方面面都很重要,尤其是在重大的场合,不容有一点失误,如果你有口臭的话,你的形象会大大的打折扣,这不是吓你哦。那么如何去除口臭呢?有什么好方法能够彻底摆脱口臭呢? 目录 1、口臭吃什么 2、口臭怎么办 3、去除口臭小窍门 4、去口臭的食疗方 5、中医秘方去除口臭 6、除口臭的偏方 ...
标签: 豆制品
一道豆腐菜 1.豆腐切片,葱切花,蒜切末。 2.锅内入油烧热,小火将豆腐煎成两片金黄色捞出待用。(火候一定要到位,要不然就没有外焦里嫩的感觉了)。 3.锅内余少量油,炒香4/5的葱花和蒜茸,将其余调味料加入锅内炒香。(原方子中是直接用烤羊肉串的调料,无奈我找了好久也没有找到,就自己配了,喜欢孜然的话就多放些,因为放了生抽,...
一碗好面--手擀面 1. 在盆里倒进120g面粉。 2. 一点一点的倒入清水,边揉边加水,不要一次倒太多,成团即可。 3. 揉成一个光滑的面团。 4. 把面团切成2块,小块比较好擀开。 5. 把面团擀成1毫米薄的面片。 6. 面片2边撒点面粉防沾。 7. 把面皮层叠起来,为避免粘在一起,...

经验教程

761

收藏

70
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部