只有素数因子为2,3或5的数字称为丑陋数字。
示例:
1,2,3,4,5,6,8,9,10,12,15 ......
1可以被认为是2 ^ 0.
我正在努力寻找第n个难看的数字。请注意,当n变大时,这些数字非常稀疏地分布。
我写了一个简单的程序来计算给定数字是否丑陋。对于n> 500 - 它变得超级慢。我尝试使用memoization - 观察:ugly_number * 2,ugly_number * 3,ugly_number * 5都很难看。即便如此,它也很慢。我尝试使用log的一些属性 - 因为这会将这个问题从乘法减少到另外 - 但是,运气不大。想与大家分享这个。有什么有趣的想法吗?
使用类似于“Eratosthenes的筛子”的概念(感谢Anon)
for (int i(2), uglyCount(0); ; i++) {
if (i % 2 == 0)
continue;
if (i % 3 == 0)
continue;
if (i % 5 == 0)
continue;
uglyCount++;
if (uglyCount == n - 1)
break;
}
我是第n个难看的数字。
即使这很慢。我试图找到第1500个难看的数字。
答案 0 :(得分:36)
Java中的简单快速解决方案。使用 Anon。描述的方法。
这里TreeSet
只是一个能够返回其中最小元素的容器。 (没有重复的存储。)
int n = 20;
SortedSet<Long> next = new TreeSet<Long>();
next.add((long) 1);
long cur = 0;
for (int i = 0; i < n; ++i) {
cur = next.first();
System.out.println("number " + (i + 1) + ": " + cur);
next.add(cur * 2);
next.add(cur * 3);
next.add(cur * 5);
next.remove(cur);
}
由于第1000个丑陋的数字是51200000,将它们存储在bool[]
中并不是一个真正的选择。
修改强>
作为工作中的娱乐(调试愚蠢的Hibernate),这里是完全线性的解决方案。感谢 marcog 的想法!
int n = 1000;
int last2 = 0;
int last3 = 0;
int last5 = 0;
long[] result = new long[n];
result[0] = 1;
for (int i = 1; i < n; ++i) {
long prev = result[i - 1];
while (result[last2] * 2 <= prev) {
++last2;
}
while (result[last3] * 3 <= prev) {
++last3;
}
while (result[last5] * 5 <= prev) {
++last5;
}
long candidate1 = result[last2] * 2;
long candidate2 = result[last3] * 3;
long candidate3 = result[last5] * 5;
result[i] = Math.min(candidate1, Math.min(candidate2, candidate3));
}
System.out.println(result[n - 1]);
我们的想法是,要计算a[i]
,我们可以将a[j]*2
用于某些j < i
。但我们还需要确保1)a[j]*2 > a[i - 1]
和2)j
尽可能小
然后,a[i] = min(a[j]*2, a[k]*3, a[t]*5)
。
答案 1 :(得分:10)
我正在努力寻找第n个难看的数字。请注意,当n变大时,这些数字的分布非常稀疏。
我写了一个简单的程序来计算给定数字是否丑陋。
对于你想要解决的问题,这看起来是错误的方法 - 这有点像shlemiel算法。
您是否熟悉查找素数的Sieve of Eratosthenes算法?类似的东西(利用每个丑陋的数字是另一个丑陋数字的2,3或5倍的知识)可能会更好地解决这个问题。
通过与Sieve的比较,我并不是说“保持一系列的bool并消除你上升的可能性”。我更多地指的是基于先前结果生成解决方案的一般方法。如果Sieve得到一个数字然后从候选集中删除它的所有倍数,那么这个问题的一个好算法将从一个空集开始,然后添加每个丑陋数字的正确倍数。
答案 2 :(得分:7)
我的回答是指 Nikita Rybak 给出的正确答案。 因此,人们可以看到从第一种方法的想法转变为第二种方法的转变。
from collections import deque
def hamming():
h=1;next2,next3,next5=deque([]),deque([]),deque([])
while True:
yield h
next2.append(2*h)
next3.append(3*h)
next5.append(5*h)
h=min(next2[0],next3[0],next5[0])
if h == next2[0]: next2.popleft()
if h == next3[0]: next3.popleft()
if h == next5[0]: next5.popleft()
Nikita Rybak第一种方法的改变是,不是将下一个候选者添加到单个数据结构中,即树集,而是可以将每个候选者分别添加到3个FIFO列表中。这样,每个列表将一直保持排序,下一个最小候选者必须始终位于这些列表中的一个或多个列表的 head 。
如果我们取消上述三个列表的使用,我们将在 Nikita Rybak '回答第二个实现。这是通过仅在需要时评估那些候选者(包含在三个列表中)来完成的,这样就不需要存储它们。
简单地说:
在第一种方法中,我们将每个新候选人放入单一数据结构中,这很糟糕,因为太多事情不明智地混淆了。每次我们对结构进行查询时,这种糟糕的策略都不可避免地需要O(log(树大小))时间复杂度。但是,通过将它们放入单独的队列中,您将看到每个查询仅占用O(1),这就是整体性能降低到O(n)的原因!这是因为三个列表中的每一个都已经自行排序。
答案 3 :(得分:5)
我相信你可以在亚线性时间内解决这个问题,可能是O(n ^ {2/3})。
为了给你一个想法,如果你简化问题以允许只有2和3的因子,你可以通过搜索至少2的最小幂来实现O(n ^ {1/2})时间。与第n个丑陋数字一样大,然后生成一个O(n ^ {1/2})候选列表。这段代码应该让你知道如何做到这一点。它依赖的事实是,仅包含2和3幂的第n个数具有素数因子分解,其指数之和为O(n ^ {1/2})。
def foo(n):
p2 = 1 # current power of 2
p3 = 1 # current power of 3
e3 = 0 # exponent of current power of 3
t = 1 # number less than or equal to the current power of 2
while t < n:
p2 *= 2
if p3 * 3 < p2:
p3 *= 3
e3 += 1
t += 1 + e3
candidates = [p2]
c = p2
for i in range(e3):
c /= 2
c *= 3
if c > p2: c /= 2
candidates.append(c)
return sorted(candidates)[n - (t - len(candidates))]
同样的想法应该适用于三个允许的因素,但代码变得更加复杂。因子分解的幂的总和下降到O(n ^ {1/3}),但是你需要考虑更多的候选者,O(n ^ {2/3})更精确。
答案 4 :(得分:4)
基本上可以搜索O(n):
请考虑保留丑陋数字的部分历史记录。现在,在每一步你必须找到下一步。它应该等于历史记录中的数字乘以2,3或5.选择最小的数字,将其添加到历史记录中,并从中删除一些数字,以便列表中的最小值乘以5将大于最大。
速度很快,因为搜索下一个数字很简单:
min(最大* 2,最小* 5,中间* 3),
它大于列表中的最大数字。如果它们很稀疏,列表将始终包含很少的数字,因此搜索必须乘以3的数字将会很快。
答案 5 :(得分:2)
这是ML中的正确解决方案。函数ugly()将返回汉明数字的流(懒惰列表)。函数nth可以在此流上使用。
这使用Sieve方法,下一个元素仅在需要时计算。
datatype stream = Item of int * (unit->stream);
fun cons (x,xs) = Item(x, xs);
fun head (Item(i,xf)) = i;
fun tail (Item(i,xf)) = xf();
fun maps f xs = cons(f (head xs), fn()=> maps f (tail xs));
fun nth(s,1)=head(s)
| nth(s,n)=nth(tail(s),n-1);
fun merge(xs,ys)=if (head xs=head ys) then
cons(head xs,fn()=>merge(tail xs,tail ys))
else if (head xs<head ys) then
cons(head xs,fn()=>merge(tail xs,ys))
else
cons(head ys,fn()=>merge(xs,tail ys));
fun double n=n*2;
fun triple n=n*3;
fun ij()=
cons(1,fn()=>
merge(maps double (ij()),maps triple (ij())));
fun quint n=n*5;
fun ugly()=
cons(1,fn()=>
merge((tail (ij())),maps quint (ugly())));
这是CS工作的第一年: - )
答案 6 :(得分:2)
要在O(n ^(2/3))中找到第n个丑陋的数字,jonderry的算法将正常工作。请注意,所涉及的数字是 huge 所以任何尝试检查数字是否丑陋的算法都没有机会。
通过在O(n log n)时间和O(n)空间中使用优先级队列,可以轻松地按升序查找所有n个最小的丑陋数字:首先创建数字最小的数字优先级队列,最初仅包括数字1.然后重复n次:从优先级队列中删除最小的数字x。如果之前没有删除x,则x是下一个更大的丑陋数字,我们将2x,3x和5x添加到优先级队列。 (如果有人不知道术语优先级队列,那就像堆密码算法中的堆一样)。这是算法的开始:
1. You’re so indecisive of what I’m saying
1. Tryna catch the beat, make up your heart
1. Don't know if you're happy or complaining
1. Don't want for us to end, where do I start?
1. First you wanna go to the left then you wanna turn right
1. Wanna argue all day, making love all night
1. First you're up then you’re down and in between*
执行时间证明:我们从队列中提取了一个丑陋的数字n次。我们最初在队列中有一个元素,在提取一个丑陋的数字后,我们添加了三个元素,将数字增加2.因此,在找到丑陋的数字后,我们在队列中最多有2n + 1个元素。提取元素可以在对数时间内完成。我们提取的数字不仅仅是丑陋的数字,而且最多是丑陋的数字加上2n - 1个其他数字(那些在n-1步之后可能在筛子中的数字)。因此总时间小于3n项目删除,以对数时间= O(n log n),总空间最多为2n + 1个元素= O(n)。
答案 7 :(得分:2)
这里有很多好的答案,但是我很难理解这些答案,特别是这些答案中的任何一个,包括被接受的答案如何维护Dijkstra's original paper中的公理2:
公理2。如果x在序列中,则2 * x,3 * x和5 * x也是如此。
经过白板处理后,很明显,公理2在算法的每次迭代中不是不变的,而是实际上算法本身的目标。在每次迭代中,我们尝试恢复公理2中的条件。如果last
是结果序列S
中的最后一个值,则公理2可以简单地改写为:
对于
x
中的某些S
,S
中的下一个值为2x
的最小值,3x
和5x
,大于last
。我们称这个公理为2'。
因此,如果我们找到x
,则可以在恒定时间内计算出2x
,3x
和5x
的最小值,并将其添加到{{1 }}。
但是我们如何找到S
?一种方法是,我们不这样做。相反,每当我们向x
添加新元素e
时,我们都会计算S
,2e
和3e
,并将它们添加到最低优先级队列中。由于此操作可保证5e
位于e
中,因此只需提取PQ的顶部元素即可满足公理2'。
此方法有效,但是问题在于我们生成了一堆我们可能最终不会使用的数字。有关示例,请参见this答案;如果用户想要S
(5)中的第5个元素,则此时的PQ保持S
。我们不能浪费这个空间吗?
结果证明,我们可以做得更好。无需存储所有这些数字,我们只需为每个倍数维护三个计数器,即6 6 8 9 10 10 12 15 15 20 25
,2i
和3j
。这些是5k
中下一个数字的候选者。当我们选择其中一个时,我们只会增加相应的计数器,而不会增加其他两个。这样,我们就不会急于生成所有的倍数,因此可以通过第一种方法解决空间问题。
让我们看看S
(即数字n = 8
)的试运行。正如Dijkstra论文中的公理1所述,我们从9
开始。
1
请注意,+---------+---+---+---+----+----+----+-------------------+
| # | i | j | k | 2i | 3j | 5k | S |
+---------+---+---+---+----+----+----+-------------------+
| initial | 1 | 1 | 1 | 2 | 3 | 5 | {1} |
+---------+---+---+---+----+----+----+-------------------+
| 1 | 1 | 1 | 1 | 2 | 3 | 5 | {1,2} |
+---------+---+---+---+----+----+----+-------------------+
| 2 | 2 | 1 | 1 | 4 | 3 | 5 | {1,2,3} |
+---------+---+---+---+----+----+----+-------------------+
| 3 | 2 | 2 | 1 | 4 | 6 | 5 | {1,2,3,4} |
+---------+---+---+---+----+----+----+-------------------+
| 4 | 3 | 2 | 1 | 6 | 6 | 5 | {1,2,3,4,5} |
+---------+---+---+---+----+----+----+-------------------+
| 5 | 3 | 2 | 2 | 6 | 6 | 10 | {1,2,3,4,5,6} |
+---------+---+---+---+----+----+----+-------------------+
| 6 | 4 | 2 | 2 | 8 | 6 | 10 | {1,2,3,4,5,6} |
+---------+---+---+---+----+----+----+-------------------+
| 7 | 4 | 3 | 2 | 8 | 9 | 10 | {1,2,3,4,5,6,8} |
+---------+---+---+---+----+----+----+-------------------+
| 8 | 5 | 3 | 2 | 10 | 9 | 10 | {1,2,3,4,5,6,8,9} |
+---------+---+---+---+----+----+----+-------------------+
在第6次迭代中并未增长,因为最小候选S
先前已添加。为了避免必须记住所有先前元素的问题,我们修改了算法,以在相应的倍数等于最小候选数时增加所有计数器。这使我们进入了以下Scala实现。
6
答案 8 :(得分:1)
我想我们可以使用动态编程(DP)并计算第n个丑陋数字。完整的说明可以在http://www.geeksforgeeks.org/ugly-numbers/
找到#include <iostream>
#define MAX 1000
using namespace std;
// Find Minimum among three numbers
long int min(long int x, long int y, long int z) {
if(x<=y) {
if(x<=z) {
return x;
} else {
return z;
}
} else {
if(y<=z) {
return y;
} else {
return z;
}
}
}
// Actual Method that computes all Ugly Numbers till the required range
long int uglyNumber(int count) {
long int arr[MAX], val;
// index of last multiple of 2 --> i2
// index of last multiple of 3 --> i3
// index of last multiple of 5 --> i5
int i2, i3, i5, lastIndex;
arr[0] = 1;
i2 = i3 = i5 = 0;
lastIndex = 1;
while(lastIndex<=count-1) {
val = min(2*arr[i2], 3*arr[i3], 5*arr[i5]);
arr[lastIndex] = val;
lastIndex++;
if(val == 2*arr[i2]) {
i2++;
}
if(val == 3*arr[i3]) {
i3++;
}
if(val == 5*arr[i5]) {
i5++;
}
}
return arr[lastIndex-1];
}
// Starting point of program
int main() {
long int num;
int count;
cout<<"Which Ugly Number : ";
cin>>count;
num = uglyNumber(count);
cout<<endl<<num;
return 0;
}
我们可以看到它非常快,只需更改 MAX 的值来计算更高丑陋数字
答案 9 :(得分:1)
并行使用3个生成器,并在每次迭代中选择最小的生成器,这是一个C程序,用于在1秒内计算2 128 以下的所有丑数:
#include <limits.h>
#include <stdio.h>
#if 0
typedef unsigned long long ugly_t;
#define UGLY_MAX (~(ugly_t)0)
#else
typedef __uint128_t ugly_t;
#define UGLY_MAX (~(ugly_t)0)
#endif
int print_ugly(int i, ugly_t u) {
char buf[64], *p = buf + sizeof(buf);
*--p = '\0';
do { *--p = '0' + u % 10; } while ((u /= 10) != 0);
return printf("%d: %s\n", i, p);
}
int main() {
int i = 0, n2 = 0, n3 = 0, n5 = 0;
ugly_t u, ug2 = 1, ug3 = 1, ug5 = 1;
#define UGLY_COUNT 110000
ugly_t ugly[UGLY_COUNT];
while (i < UGLY_COUNT) {
u = ug2;
if (u > ug3) u = ug3;
if (u > ug5) u = ug5;
if (u == UGLY_MAX)
break;
ugly[i++] = u;
print_ugly(i, u);
if (u == ug2) {
if (ugly[n2] <= UGLY_MAX / 2)
ug2 = 2 * ugly[n2++];
else
ug2 = UGLY_MAX;
}
if (u == ug3) {
if (ugly[n3] <= UGLY_MAX / 3)
ug3 = 3 * ugly[n3++];
else
ug3 = UGLY_MAX;
}
if (u == ug5) {
if (ugly[n5] <= UGLY_MAX / 5)
ug5 = 5 * ugly[n5++];
else
ug5 = UGLY_MAX;
}
}
return 0;
}
这是输出的最后10行:
100517: 338915443777200000000000000000000000000 100518: 339129266201729628114355465608000000000 100519: 339186548067800934969350553600000000000 100520: 339298130282929870605468750000000000000 100521: 339467078447341918945312500000000000000 100522: 339569540691046437734055936000000000000 100523: 339738624000000000000000000000000000000 100524: 339952965770562084651663360000000000000 100525: 340010386766614455386112000000000000000 100526: 340122240000000000000000000000000000000
以下是可用于QuickJS的Javascript版本:
import * as std from "std";
function main() {
var i = 0, n2 = 0, n3 = 0, n5 = 0;
var u, ug2 = 1n, ug3 = 1n, ug5 = 1n;
var ugly = [];
for (;;) {
u = ug2;
if (u > ug3) u = ug3;
if (u > ug5) u = ug5;
ugly[i++] = u;
std.printf("%d: %s\n", i, String(u));
if (u >= 0x100000000000000000000000000000000n)
break;
if (u == ug2)
ug2 = 2n * ugly[n2++];
if (u == ug3)
ug3 = 3n * ugly[n3++];
if (u == ug5)
ug5 = 5n * ugly[n5++];
}
return 0;
}
main();
答案 10 :(得分:0)
这是我的代码,想法是将数字除以2(直到它给出余数为0),然后是3和5。如果最后这个数字变为一个则是一个丑陋的数字。 你可以数,甚至打印所有丑陋的数字,直到n。
int count = 0;
for (int i = 2; i <= n; i++) {
int temp = i;
while (temp % 2 == 0) temp=temp / 2;
while (temp % 3 == 0) temp=temp / 3;
while (temp % 5 == 0) temp=temp / 5;
if (temp == 1) {
cout << i << endl;
count++;
}
}
答案 11 :(得分:-3)
这个问题可以在O(1)中完成。
如果我们删除1并查看2到30之间的数字,我们会注意到有22个数字。
现在,对于上面22个数字中的任何数字x,在31到60之间会有一个数字x + 30也很难看。因此,我们可以在31到60之间找到至少22个数字。现在对于31到60之间的每个丑陋数字,我们可以将其写为s + 30.因此s也将是丑陋的,因为s + 30可以被2,3整除因此,在31和60之间将恰好有22个数字。此后,对于每30个数字的块,可以重复该逻辑。
因此,前30个数字中将有23个数字,之后每30个数字将有22个数字。也就是说,前1到30 uglies将发生在1到30之间,45 uglies将发生在1到60之间,67 uglies将发生在1到30之间等。
现在,如果给我n,比如137,我可以看到137/22 = 6.22。答案将介于6 * 30和7 * 30之间或介于180和210之间。到180时,我将在180处获得6 * 22 + 1 = 133的丑陋数字。我将在210处获得第154个丑陋的数字。所以我在寻找区间[2,30]中的第4个丑陋数字(因为137 = 133 + 4),这是5.第137个丑陋的数字则是180 + 5 = 185。
另一个例子:如果我想要第1500个丑陋的数字,我算上1500/22 = 68个块。因此,我将在30 * 68 = 2040时有22 * 68 + 1 = 1497个丑陋。[2,30]块中接下来的三个uglies是2,3和4.所以我们要求的丑陋是在2040 + 4 = 2044年。
我可以简单地在[2,30]之间建立一个丑陋的数字列表,并通过在O(1)中查找答案来找到答案。
答案 12 :(得分:-3)
这是基于合并三个排序列表的想法的另一种 O(n)方法(Python解决方案)。挑战在于以递增的顺序找到下一个丑陋的数字。例如,我们知道前七个丑陋的数字是[1,2,3,4,5,6,8]
。丑陋的数字实际上来自以下三个列表:
所以第n个丑陋的数字是从上面三个列表中合并的列表的第n个数字:
1,1 * 2,1 * 3,2 * 2,1 * 5,2 * 3 ......
def nthuglynumber(n):
p2, p3, p5 = 0,0,0
uglynumber = [1]
while len(uglynumber) < n:
ugly2, ugly3, ugly5 = uglynumber[p2]*2, uglynumber[p3]*3, uglynumber[p5]*5
next = min(ugly2, ugly3, ugly5)
if next == ugly2: p2 += 1 # multiply each number
if next == ugly3: p3 += 1 # only once by each
if next == ugly5: p5 += 1 # of the three factors
uglynumber += [next]
return uglynumber[-1]
ugly2, ugly3, ugly5 = uglynumber[p2]*2, uglynumber[p3]*3, uglynumber[p5]*5
next = min(ugly2, ugly3, ugly5)
if next == ugly2: p2+=1
if next == ugly3: p3+=1
if next == ugly5: p5+=1
if
与elif
或else
uglynumber
中
uglynumber += [next]