由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 今天晚上要不然研究一下这题?
相关主题
request solutions to 2 questions on leetcodeLeetCode LongestValidParentheses
请教Find Median Of Two Sorted Arrays帮忙看看为撒 leetcode OJ time out "Substring with Concatenation of All Words "
到底我这个题leetcode 的add binary解法错在哪了??问一道算法题max length of subsequence string matching subs
问个题目: 从1-n 中找出k, 使得 k=a^2 +b^2 (a b 为整数)Quick Sort的partition问题
大家幫我看看longest palindrome為什麽有錯,檢查半天也沒看出cut the batten这个题啥意思啊?
请教一道题目paging和 segmentation有什么区别?
讨论一道G的题find longest substring which contains just two unique characters.为什么我这段简单的程序segment fault
这个怎么做?C++ Q87: What is wrong with this swap function?
相关话题的讨论汇总
话题: s1话题: s2话题: lenc话题: lena话题: length
进入JobHunting版参与讨论
1 (共1页)
p*****2
发帖数: 21240
1
做了recursion的,道理不难。想研究一下bottom up的解法。
http://www.mitbbs.com/article_t/JobHunting/32132145.html
可以把两个字符串拆成四段来看。假如原字符串是:A B C D
中间交换 B C,应该得到:A C B D
(每次个大写字母代表一段字符,A D 可以是空).
用一个二维数组 X[i][j] 记录 S1从i开始,S2从j开始的相同字符的最大长度。譬如:
S1=abcd
S2=cdab
then
X[0][0]=0
X[0][1]=0
X[0][2]=2 (ab -> ab)
X[0][2]=0
...
同时记录两头最大相同字串的长度。譬如:
S1=abxyz
S2=abyxz
那么 A 最大长度是2, D 最大长度是1.
Now,
for i = 1 to Length-1 // i is start of segment C in S1
for j = 0 to CommonPrefixLength // j is start of segment of C in S2 (
length of A)
for LenC = X[i][j] to 1 // LenC as the length of segment C
&& (i+LenC >= Length - CommonSuffixLength) // end of C must reside
in CommonSuffix.
LenA = j
LenB = i - LenA
if X[LenA][LenA+LenC] >= LenB // Common substring must be long
enough for B
return true
Not strictly checked for boundaries. But that's the idea.
g*********e
发帖数: 14401
2
第二题不是前一段讨论过吗 貌似搞出个O(n^4)的解法
后来有个人贴了个linear time的解法,我没细看,不知对不对
p*****2
发帖数: 21240
3

上边是n^3的,还没心情研究呢。你要是看懂了,给我讲讲

【在 g*********e 的大作中提到】
: 第二题不是前一段讨论过吗 貌似搞出个O(n^4)的解法
: 后来有个人贴了个linear time的解法,我没细看,不知对不对

S********t
发帖数: 3431
4
下次拿这个题来考人

【在 p*****2 的大作中提到】
:
: 上边是n^3的,还没心情研究呢。你要是看懂了,给我讲讲

p*****2
发帖数: 21240
5

希望不要碰到你。

【在 S********t 的大作中提到】
: 下次拿这个题来考人
c*****l
发帖数: 20
6
G 的考官,给人留点后路啊

【在 S********t 的大作中提到】
: 下次拿这个题来考人
c*****l
发帖数: 20
7
既然是 s1 = A B C D 和 s2 = A C B D 的关系
1: 先找到 B C 和 C B
其实应该是 B x C 和 C x B, x 是 the non-leaf node whose two children are
swapped
举个例子,假设 B = b1 b2 b3, C = c1 c2 c4 c4 (bn, cn is a char)
t1 = b1 b2 b3 x c1 c2 c3 c4
<=>
t2 = c1 c2 c3 c4 x b1 b2 b3
2. reverse t2 to t2'
t2' = b3 b2 b1 x c4 c3 c2 c1
3. 比较 t1 和 t2'
对于每个可能的x, (可能不止一个)reverse t2' 的两个 substring
如果 reversed substring 各自和 t1 的对应 substring 相等
(coding 是不需要 reverse, 比较 substring 时, t2' 指针从后走到前就可以了)
那么,s1 s2 是 scrambled string pairs
如果,没有这个 x 存在, s1 s2 are not.
1 (共1页)
进入JobHunting版参与讨论
相关主题
C++ Q87: What is wrong with this swap function?大家幫我看看longest palindrome為什麽有錯,檢查半天也沒看出
分享今天做的一道基础题请教一道题目
刚做了一道有些怪异的题讨论一道G的题find longest substring which contains just two unique characters.
再问个简单的C问题这个怎么做?
request solutions to 2 questions on leetcodeLeetCode LongestValidParentheses
请教Find Median Of Two Sorted Arrays帮忙看看为撒 leetcode OJ time out "Substring with Concatenation of All Words "
到底我这个题leetcode 的add binary解法错在哪了??问一道算法题max length of subsequence string matching subs
问个题目: 从1-n 中找出k, 使得 k=a^2 +b^2 (a b 为整数)Quick Sort的partition问题
相关话题的讨论汇总
话题: s1话题: s2话题: lenc话题: lena话题: length