摘要:
A group of two or more people wants to meet and minimize the total travel distance. You are given a 2D grid of values 0 or 1, where each 1 marks the h... 阅读全文
posted @ 2015-12-28 12:06
neverlandly
阅读(286)
评论(0)
推荐(0)
摘要:
最大最小堆 复杂度 时间 O(logN) insert, O(1) query, 空间 O(N) 思路 维护一个最大堆,一个最小堆。最大堆存的是到目前为止较小的那一半数,最小堆存的是到目前为止较大的那一半数,这样中位数只有可能是堆顶或者堆顶两个数的均值。而维护两个堆的技巧在于判断堆顶数和新来的数的大 阅读全文
posted @ 2015-12-28 07:45
neverlandly
阅读(280)
评论(0)
推荐(0)
摘要:
You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take tu 阅读全文
posted @ 2015-12-28 06:05
neverlandly
阅读(535)
评论(0)
推荐(0)
摘要:
You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take tu... 阅读全文
posted @ 2015-12-28 04:17
neverlandly
阅读(303)
评论(0)
推荐(0)
摘要:
You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 ston... 阅读全文
posted @ 2015-12-28 02:17
neverlandly
阅读(226)
评论(0)
推荐(0)
摘要:
Given a pattern and a string str, find if str follows the same pattern.Here follow means a full match, such that there is a bijection between a letter... 阅读全文
posted @ 2015-12-28 01:45
neverlandly
阅读(342)
评论(0)
推荐(0)
摘要:
Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection between a lette 阅读全文
posted @ 2015-12-28 00:54
neverlandly
阅读(327)
评论(0)
推荐(0)