Redian新闻
>
HOT DEAL 10-cent apps (android market)
avatar
HOT DEAL 10-cent apps (android market)# PDA - 掌中宝
s*n
1
Give you two sequences of length N, how to find the max window of matching
patterns. The patterns can be mutated.
For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
以sort,还是不懂。请教一下应该怎么做。
avatar
k*f
2
花了9毛钱,买了9个app。
hot deal
好像每天都有新的10个 1毛app出现
To celebrate this milestone, we partnered with some of the Android
developers who contributed to this milestone to make a bunch of great
Android apps available at an amazing price. Starting today for the next 10
days, we’ll have a new set of awesome apps available each day for only 10
cents each. Today, we are starting with Asphalt 6 HD, Color & Draw for Kids,
Endomondo Sports Tracker Pro, Fieldrunners HD, Great Little War Game,
Minecraft, Paper Camera, Sketchbook Mobile, Soundhound Infinity & Swiftkey X.
http://googlemobile.blogspot.com/2011/12/10-billion-android-mar
avatar
h*6
3
是否一定要相同位置呢?比如第一个字符串的1~4和第二个字符串的5~8可不可以?
avatar
h*r
4
Soundhound Infinity ,以前在amazon app的时候free的时候拿了一个,挺好使的,找
歌很准,不过就是没什么大用。
swiftkey X好使吗?
avatar
b*e
5
下面的方法,可能稍微优化,但是不太想正确答案
1 .如果两个字符串size相同,那么先sort,然后比较, 如果相同,就是最大值, 否则
2 .在seq2里面, 找到第一个不在seq1里面的字符, 假设位置是X
那么最大值就在(0,x)和(x+1,n-1)这两个数组里面, 假设这两个字符串是A和B
如果所有字符都出现了, 那么这2个字符串是相等的

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
B*n
6
good.
avatar
b*e
7
应该是可以的

【在 h**6 的大作中提到】
: 是否一定要相同位置呢?比如第一个字符串的1~4和第二个字符串的5~8可不可以?
avatar
l*r
8
good, even though I am writing software as well, but when I need some app, I
still google the apk.

Kids,
X.

【在 k****f 的大作中提到】
: 花了9毛钱,买了9个app。
: hot deal
: 好像每天都有新的10个 1毛app出现
: To celebrate this milestone, we partnered with some of the Android
: developers who contributed to this milestone to make a bunch of great
: Android apps available at an amazing price. Starting today for the next 10
: days, we’ll have a new set of awesome apps available each day for only 10
: cents each. Today, we are starting with Asphalt 6 HD, Color & Draw for Kids,
: Endomondo Sports Tracker Pro, Fieldrunners HD, Great Little War Game,
: Minecraft, Paper Camera, Sketchbook Mobile, Soundhound Infinity & Swiftkey X.

avatar
s*t
9
dp[i] = set up to position i
for i = 0 to n
for j = 0 to i
if dp1[i]-dp1[j] == dp2[i] - dp2[j]
then result.append()
O(n^2)

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
e*n
10
谢谢了。正好有一个信用卡有promotion,在12月份如果消费5次以上送$20。
avatar
s*n
11
起始位置不用相同

【在 h**6 的大作中提到】
: 是否一定要相同位置呢?比如第一个字符串的1~4和第二个字符串的5~8可不可以?
avatar
n*r
12

----很好使

【在 h*********r 的大作中提到】
: Soundhound Infinity ,以前在amazon app的时候free的时候拿了一个,挺好使的,找
: 歌很准,不过就是没什么大用。
: swiftkey X好使吗?

avatar
s*t
13
得,那我做的根本不对

【在 s****n 的大作中提到】
: 起始位置不用相同
avatar
s*n
14
这个问题我觉得他也没有讲清楚,所以我以我的理解来阐述题目。
每个seq里面的字符应该是可以重复的
另外第一步你考虑整个str,只有C(N,N)=1种。
但是如果你说在(0,x)里面的时候,就有C(N,x)种组合,这个复杂度和我brute force有
点象

【在 b********e 的大作中提到】
: 下面的方法,可能稍微优化,但是不太想正确答案
: 1 .如果两个字符串size相同,那么先sort,然后比较, 如果相同,就是最大值, 否则
: 2 .在seq2里面, 找到第一个不在seq1里面的字符, 假设位置是X
: 那么最大值就在(0,x)和(x+1,n-1)这两个数组里面, 假设这两个字符串是A和B
: 如果所有字符都出现了, 那么这2个字符串是相等的
:
: (

avatar
b*e
15
还是能有点优化的
假设第一次分开两个数组, 一个X大小, 一个Y大小
原始的SEQ1是N大小.
当我们比较SEQ1和X的时候, 我们就开是否SEQ1里面的字符都在X出现, 否则找到一个没
出现的字符, 对SEQ1进行分化成两个数组

【在 s****n 的大作中提到】
: 这个问题我觉得他也没有讲清楚,所以我以我的理解来阐述题目。
: 每个seq里面的字符应该是可以重复的
: 另外第一步你考虑整个str,只有C(N,N)=1种。
: 但是如果你说在(0,x)里面的时候,就有C(N,x)种组合,这个复杂度和我brute force有
: 点象

avatar
b*e
16
或者我猜,会不会是DP阿

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
s*n
17
问题是如果不一样长,就不能直接判断了。
假设seq1 = ABCDE, X=ACE。
X里面的字符都出现在seq1里面,但是max window size不是3是1.

【在 b********e 的大作中提到】
: 还是能有点优化的
: 假设第一次分开两个数组, 一个X大小, 一个Y大小
: 原始的SEQ1是N大小.
: 当我们比较SEQ1和X的时候, 我们就开是否SEQ1里面的字符都在X出现, 否则找到一个没
: 出现的字符, 对SEQ1进行分化成两个数组

avatar
s*n
18
应该是DP一类的,但是怎么构建这个DP我当时没有想出

【在 b********e 的大作中提到】
: 或者我猜,会不会是DP阿
:
: (

avatar
b*e
19
这个时候就是用X去比较Seq1,从头开始
Seq1之后下面几个组合
ABC
BCD
CDE
每次比较都可以重复前面的2步骤, sort, 然后分割
回避bruceforce少不少的
应为最后的结果是递归出来的, 所以在每个分叉上找到最大值就行了

【在 s****n 的大作中提到】
: 问题是如果不一样长,就不能直接判断了。
: 假设seq1 = ABCDE, X=ACE。
: X里面的字符都出现在seq1里面,但是max window size不是3是1.

avatar
b*e
20
看到DP头疼...

【在 s****n 的大作中提到】
: 应该是DP一类的,但是怎么构建这个DP我当时没有想出
avatar
s*n
21
你的那个解法应该就是DP的思路了,牛啊。

【在 b********e 的大作中提到】
: 看到DP头疼...
avatar
b*e
22
我的哪个有点divide and conque呵呵
回头再想想

【在 s****n 的大作中提到】
: 你的那个解法应该就是DP的思路了,牛啊。
avatar
b*h
23
你这个难道不可以扩展到二维吗?
dp[i][j] = set of chars from pos i to pos j
for len in [n, 1]
for i in [0, n-len)
if dp1[i][i+len] == dp2[i][i+len]
return len

【在 s*********t 的大作中提到】
: dp[i] = set up to position i
: for i = 0 to n
: for j = 0 to i
: if dp1[i]-dp1[j] == dp2[i] - dp2[j]
: then result.append()
: O(n^2)
:
: (

avatar
B*t
24
先找出两个seq的suffix array,然后在SA上找max window,找max window的过程和
已知中序,后续遍历,重建二叉树的方法很象。 复杂度O(nlogn)

of matching
window is 4. (

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
y*e
25
这个题目我能想到的就是Dynamic Programming了。
比较2个bag of chars,可以把它们转化成一种shorten form,which are sorted
alphabets with frequencies.
比如:
AABEDEF -> A2 B1 D1 E2 F1
FFACBDX -> A1 B1 C1 D1 X1 F2
Create, sort and copare two shorten forms would take O(N). Also, find
differences between two shorten forms would take O(logN)。
现在,把2个string各自转化成shorten form。如果是一样的,那么答案就已经出来了。
否则,从string1里面找不存在于string2的字符,把string1截取成若干个小的字符串
。同样地,从string2里面找不存在于string1的字符,把string2截成若干个小的字符
串。这样,我们就有2个字符串数组,比较每一个pair,(这是和本题同样的问题但是
规模小了一些)
avatar
f*w
26
A[n], B[m], 转化成矩阵K[n,m],如果a[i] == b[j], 设k[i,j]=1,否则设0,找矩阵的
最大diagonal为一的连续子矩阵,因该有O(n^2)的算法
avatar
d*t
27
this finds the same substring. not anagrams.
but it can be modified to get an O(n^2) solution.
do the same matrix computation.
but instead of looking for the sub-square that has all 1s in its diagonal,
look for the max sub-square that has no row that is all 0s and no column
that is all 0s.
To give an example: string a = "ABCDEFG", string b = "KDACBPG"
A B C D E F G
K 0 0 0 0 0 0 0
D 0 0 0 1 0 0 0
A 1 0 0 0 0 0

【在 f**********w 的大作中提到】
: A[n], B[m], 转化成矩阵K[n,m],如果a[i] == b[j], 设k[i,j]=1,否则设0,找矩阵的
: 最大diagonal为一的连续子矩阵,因该有O(n^2)的算法

avatar
s*t
28

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
c*2
29
Let’s first simplify the problem:
1) Assume the elements of both sequences contain only 26 upper case letters
(A..Z)
2) Assume both sequences don't have duplicate elements,
for example, "AABBC" is not allowed
With these in mind, it will be quite easy:
1) Map each sequence to a unsigned int32 (lower 26 bits)
seq1 = "ABCDEFG",
maps/hashes to b1= (000000) 00000000000000000001111111
seq2 = "DBCAPFG",
maps/hashes to b2=(000000) 00000000001000000001101111
2) c=b1&b2
3) Find the longest
avatar
h*k
30
可以用二分法来确定最大长度x,x应该在区间(1,min(str1_len, str2_len))里。
对于给定长度x,我们可以用O(n)来判断是否在str1和str2中各存在一个长度为x的子串
互为anagram。基本思路是对于str1和str2中的每个可能长度为x的substring,生成
counter array,记录里面每个字符出现的次数。比如baca的counter table就是count[
a]=2, count[b]=1, count[c]=1。然后把array的值存入hash table。这样就能找出互
为anagram的两个子串。

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
A*r
31
我怎么觉得没有那么复杂啊,貌似复杂度就是sort的复杂度 。。
用楼主的例子:
seq1: ABCDEFG
seq2: DBCAPFG
可以得到seq2中每个字母在seq1对应的坐标依次为, O(n)可以实现吧。
3 1 2 0 -1 5 6
P字母没有在seq1里面出现,所以标记为-1, 然后sort这个坐标组里面足用-1分割开的
每个段,变为
0 1 2 3 -1 5 6
然后找最长的strictly increment 的一组数就可以了。。
关于这个间隔sort的可行性和复杂度,可以再讨论一下。。

(

【在 s****n 的大作中提到】
: Give you two sequences of length N, how to find the max window of matching
: patterns. The patterns can be mutated.
: For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
: ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
: 我一点头绪都没有,就想出了brutal force的办法。对方说可以利用都是N的特性,可
: 以sort,还是不懂。请教一下应该怎么做。

avatar
p*7
32
我觉得这个办法最好,实现起来最简单。平均复杂度和最差复杂度都是N^2,其他办法
最差复
杂度还是N^2,估计平均复杂度少一些

【在 d****t 的大作中提到】
: this finds the same substring. not anagrams.
: but it can be modified to get an O(n^2) solution.
: do the same matrix computation.
: but instead of looking for the sub-square that has all 1s in its diagonal,
: look for the max sub-square that has no row that is all 0s and no column
: that is all 0s.
: To give an example: string a = "ABCDEFG", string b = "KDACBPG"
: A B C D E F G
: K 0 0 0 0 0 0 0
: D 0 0 0 1 0 0 0

avatar
c*w
33
假如:
Seq1: ABXCDEFG
Seq2: DBCAPFGX
Seq中的每个字母坐标:
4 1 3 0 (-1) 6 7 2
sort之后
0 1 3 4 -1 2 6 7
Window[A,B], Window[C,D]等都不是valid的candidate啊?
不知道我有没有正确理解AprilFlower的办法.

【在 A*********r 的大作中提到】
: 我怎么觉得没有那么复杂啊,貌似复杂度就是sort的复杂度 。。
: 用楼主的例子:
: seq1: ABCDEFG
: seq2: DBCAPFG
: 可以得到seq2中每个字母在seq1对应的坐标依次为, O(n)可以实现吧。
: 3 1 2 0 -1 5 6
: P字母没有在seq1里面出现,所以标记为-1, 然后sort这个坐标组里面足用-1分割开的
: 每个段,变为
: 0 1 2 3 -1 5 6
: 然后找最长的strictly increment 的一组数就可以了。。

avatar
c*w
34
Counter Example:
Seq1: ABCDEFG
Seq2: ABXCDYZ
maps/hashes to b1= (000000) 00000000000000000001111111
maps/hashes to b2= (000000) 11100000000000000000001111
Is the answer: ABCD? It is not correct.

letters

【在 c***2 的大作中提到】
: Let’s first simplify the problem:
: 1) Assume the elements of both sequences contain only 26 upper case letters
: (A..Z)
: 2) Assume both sequences don't have duplicate elements,
: for example, "AABBC" is not allowed
: With these in mind, it will be quite easy:
: 1) Map each sequence to a unsigned int32 (lower 26 bits)
: seq1 = "ABCDEFG",
: maps/hashes to b1= (000000) 00000000000000000001111111
: seq2 = "DBCAPFG",

avatar
c*w
35
请问, 找max sub square maxtrix的过程, 怎么用O(n^2)的算法实现啊?
谢谢!

【在 p********7 的大作中提到】
: 我觉得这个办法最好,实现起来最简单。平均复杂度和最差复杂度都是N^2,其他办法
: 最差复
: 杂度还是N^2,估计平均复杂度少一些

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。