分享
 
 
 

把Google? Code Jam 2005 的练习题目贴出来讨论讨论!

王朝other·作者佚名  2006-01-31
窄屏简体版  字體: |||超大  

新的字母表(攻下试验场825)

Problem Statement

The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of 'B' and 'A' characters. The first character in the decree specifies whether 'a' must come ('B')Before 'b' in the new alphabet or ('A')After 'b'. The second character determines the relative placement of 'b' and 'c', etc. So, for example, "BAA" means that 'a' must come Before 'b', 'b' must come After 'c', and 'c' must come After 'd'.

Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet.

Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1.

Definition

Class:

Alphabet

Method:

choices

Parameters:

string

Returns:

int

Method signature:

int choices(string decree)

(be sure your method is public)

Constraints

decree contains between 1 and 25 characters inclusive.

(问题中文说明,翻译的比较笨拙,请见谅)

一国家决定新排他们字母表,无大写字母。他们要发布只有'B'和'A'组成的规定约束,在新字符表中此规定的第一个字母将回决定'a'是在'b'的(B before)前面还是后面(A after),第2个字符将会决定'b'和'c',依此类推。比如"BAA"就指明'a'在'b'的前面,'b'在'c'的后面,'c'在'd'的后面。

没有甬道的字符不要,比如规定中有K个字符,那么新字母表就只有K+1个小写字母。(我注:如上面的BAA有3个字符,那么新表就有4个,也就是'd'后面的全被忽略)

创建一个名为Alphabet的类,此类含有一个名为choices方法,choices方法以"规定(decree)"作为参数输入,然后返回所有符合这个规定的新字母表的可能数,如果大于1,000,000,000可能,就返回-1

定义:

类名:Alphabet

方法:choices

参数类型:string

返回值类型:int

方法签名:int choices(string decree)

(确保choices为公有方法)

参数条件:

规定中的'B'和'A'总和必须大于等于1,小于等于25

举个例

输入:"BAA"

返回:3

解释:因为根据规定("BAA")'a'在'b'的前面,'b'在'c'的后面,'c'在'd'的后面,所有符合这个规定的新字母表有3个:adcb、dacb和dcab .

-------------------------------------------------------------------------

此问题的算法如下:

using System;

class Alphabet

{

public static readonly Int32 MaxValue = 1000000000;

public static int choices(String decree)

{

Int32 all_pass =0,count = 0;

Int32[] father = new int[decree.Length+1];

Int32[] son = new int[decree.Length+1];

father[0] =1;

foreach(char aorb in decree)

{

all_pass = 0;

if (aorb=='B')

for(int i=count ;i>=0 ; i--)

{

son[i]=son[i+1]+father[i];

if((all_pass+=son[i])>MaxValue) return -1;

}

if (aorb=='A')

for (int i=0 ; i<=count ; i++)

{

son[i+1]=son[i]+father[i];

if((all_pass+=son[i+1])>MaxValue) return -1;

}

Array.Copy (son,father,son.Length);

Array.Clear(son,0,son.Length);

count++ ;

}

return all_pass;

}

}

/// 想交朋友就email 我:zhonghua@rinpak.com.cn

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有