由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教 Cracking the Coding Interview 上一道题
相关主题
career cup 上9.4题答案是否正确careerup 150 上一道题 答案没看懂?
问个题Crack the coding interview 是不是就是新版的 careercup 150?
关于搭人梯那道题,careercup上面的答案错的吧实习职位: Computational Intelligence in RF Circuit Design
Cracking Ed4里的9.7 答案有错吗?Google onsite问题
再来cc150一问找工作近乎绝望,觉得可能还是简历的问题,请大家帮忙看看 (转载)
请教careercup上的一道题非死不可的onsite 系统设计没面好 影响大么
找工作。求经验。感谢!!Embedded system design 如何找工作 (转载)
招Graphic Designer IV, Web Developer(WordPress)有必要拿个CS学位吗?
相关话题的讨论汇总
话题: cracking话题: coding话题: interview话题: 道题话题: tower
进入JobHunting版参与讨论
1 (共1页)
d******e
发帖数: 164
1
A circus is designing a tower routine consisting of people standing atop one
another’s shoulders. For practical and aesthetic reasons, each person must
be both shorter and lighter than the person below him or her. Given the
heights and weights of each person in the circus, write a method to compute
the largest possible number of people in such a tower.
EXAMPLE:
Input (ht, wt): (65, 100) (70, 150) (56, 90) (75, 190) (60, 95) (68, 110)
Output: The longest tower is length 6 and includes from top to bottom: (56,
90)
(60,95) (65,100) (68,110) (70,150) (75,190)
这个问题给出的算法思路貌似不对?
比如说对于下面的输出:
(1, 2) (2, 3) (3, 9) (4, 5) (5, 6) (9, 4)
最大的输出应该是:
(1, 2) (2, 3) (4, 5) (5, 6)
请教这个问题如何解?
g****y
发帖数: 240
2
先按照其中的一维排序,然后找另一维的longest increasing sequence
d******e
发帖数: 164
3
Why "longest increasing sequence"?
对于上面的例子,
(1, 2) (2, 3) (3, 9) (4, 5) (5, 6) (9, 4)
找出来的结果是:
(1, 2) (2, 3) (3, 9)
但显然存在更长的序列:
(1, 2) (2, 3) (4, 5) (5, 6)

【在 g****y 的大作中提到】
: 先按照其中的一维排序,然后找另一维的longest increasing sequence
b***m
发帖数: 5987
4

longest increasing sequence并不要求连续啊。

【在 d******e 的大作中提到】
: Why "longest increasing sequence"?
: 对于上面的例子,
: (1, 2) (2, 3) (3, 9) (4, 5) (5, 6) (9, 4)
: 找出来的结果是:
: (1, 2) (2, 3) (3, 9)
: 但显然存在更长的序列:
: (1, 2) (2, 3) (4, 5) (5, 6)

1 (共1页)
进入JobHunting版参与讨论
相关主题
有必要拿个CS学位吗?再来cc150一问
问个google面试题请教careercup上的一道题
facebook, google, amazon招engineering phd 具体做什么?找工作。求经验。感谢!!
Amazon 的 On site 该怎么准备呢?招Graphic Designer IV, Web Developer(WordPress)
career cup 上9.4题答案是否正确careerup 150 上一道题 答案没看懂?
问个题Crack the coding interview 是不是就是新版的 careercup 150?
关于搭人梯那道题,careercup上面的答案错的吧实习职位: Computational Intelligence in RF Circuit Design
Cracking Ed4里的9.7 答案有错吗?Google onsite问题
相关话题的讨论汇总
话题: cracking话题: coding话题: interview话题: 道题话题: tower