买coop里头的一个unit有什么潜在问题吗# Living
a*e
1 楼
好悲催啊。
面试是2m*2m的小房间,但却要挤下三个人(一个shadow)。
我一紧张然后就果断挂了第一面。(嗯,关于这个以前发过贴了)。
之后就是漫长的等结果啊。
都实习一年了,mentor、manager、还有4、5个eng给写了很好的feedback。
结果上周到了HC还是挂掉了。
还没给加面。竟然不给加面。。
还说觉得我的背景去做research比做software engineer更合适。
然后G的research又不招master的嘛。
刚收到拒信时各种shock啊,现在好多了。
感觉自己接受现实的速度有点太快了?呵呵~
顺便求大神们的各种内推啊(需要h1b sponsor)。
贴题了。昨天做leetcode时竟然发现在某个回复里有这道题:
http://www.leetcode.com/2010/11/best-time-to-buy-and-sell-stock
注意不是原题,而是下面的某回复:
www said on August 25, 2011 Reply
hey 1337coder,
i was given an interview question on this, but they had a following question
example, if it is 6,1,3,2,4,7, we can buy for 1 and sell for 3, and we can
buy for 2, and sell for 4,then buy on 4, sell for 7. total maxval =3-1+4-2+7
-4 = 7. They would like to have some O(n) solutions.
记得还有新的条件就是每次交易都有固定手续费c
一开始按着原题的思路走了,后来才想到用动归。
想复杂了,列了两个状态 largest_gain_with_stock_after_day[day], largest_gain_
without_stock_after_day[day].
然后才在提示下发现可以用largest_gain_after_day[day]来代替。
列了个O(n^2)的,开始优化,因为时间来不及了,随口说用堆可以O(nlogn),一出
门就后悔了,只要一个max的就可以了,所以应该是O(n)的。
面试是2m*2m的小房间,但却要挤下三个人(一个shadow)。
我一紧张然后就果断挂了第一面。(嗯,关于这个以前发过贴了)。
之后就是漫长的等结果啊。
都实习一年了,mentor、manager、还有4、5个eng给写了很好的feedback。
结果上周到了HC还是挂掉了。
还没给加面。竟然不给加面。。
还说觉得我的背景去做research比做software engineer更合适。
然后G的research又不招master的嘛。
刚收到拒信时各种shock啊,现在好多了。
感觉自己接受现实的速度有点太快了?呵呵~
顺便求大神们的各种内推啊(需要h1b sponsor)。
贴题了。昨天做leetcode时竟然发现在某个回复里有这道题:
http://www.leetcode.com/2010/11/best-time-to-buy-and-sell-stock
注意不是原题,而是下面的某回复:
www said on August 25, 2011 Reply
hey 1337coder,
i was given an interview question on this, but they had a following question
example, if it is 6,1,3,2,4,7, we can buy for 1 and sell for 3, and we can
buy for 2, and sell for 4,then buy on 4, sell for 7. total maxval =3-1+4-2+7
-4 = 7. They would like to have some O(n) solutions.
记得还有新的条件就是每次交易都有固定手续费c
一开始按着原题的思路走了,后来才想到用动归。
想复杂了,列了两个状态 largest_gain_with_stock_after_day[day], largest_gain_
without_stock_after_day[day].
然后才在提示下发现可以用largest_gain_after_day[day]来代替。
列了个O(n^2)的,开始优化,因为时间来不及了,随口说用堆可以O(nlogn),一出
门就后悔了,只要一个max的就可以了,所以应该是O(n)的。