可以将数字分解为2的幂吗?


33

昨天和孩子一起玩时,我注意到他的玩具火车上的数字:

4281

所以我们有可分为或

4281
4281
22212320

如此简单的挑战:给定一个非负数作为输入,返回一致的真值和假值,这些值表示该数字的字符串表示形式(以10为基数且不带前导零)可以以某种方式拆分为2的幂。

例子:

4281      truthy (4-2-8-1)
164       truthy (16-4 or 1-64)
8192      truthy (the number itself is a power of 2)
81024     truthy (8-1024 or 8-1-02-4)
101       truthy (1-01)
0         falsey (0 cannot be represented as 2^x for any x)
1         truthy
3         falsey
234789    falsey
256323    falsey (we have 256 and 32 but then 3)
8132      truthy (8-1-32)

Tests for very large numbers (not really necessary to be handled by your code):
81024256641116  truthy (8-1024-256-64-1-1-16)
64512819237913  falsey

这是,因此每种语言的最短代码可能会胜出!


2
@StewieGriffin最初我曾考虑过将输入数字限制为标准int类型(4个字节)的范围,但实际上我不介意您的代码是否不支持非常大的数字。只需在答案中说明代码的局限性即可。
查理

3
建议的测试用例101:(由于0而虚假)...还是应该为true(1 - 01)?
Shieru Asakoto

1
@ShieruAsakoto我一直在101用当前答案测试该案例,它们都返回true,因为可以将其分解1-01为都是2的幂,因此我认为该案例是真实的。
查理

6
只是将此留给所有人作为提示。这是检查数字是否为2的幂的三种可能方法:1)检查log2(n)逗号后是否不包含小数位。2)检查是否n AND (n-1) == 0。3)创建一个square-nrs列表,并检查是否n在该列表中。
凯文·克鲁伊森

1
当然,在我上面的评论中,“ square-nrs ”应为“ 2的幂 ”。>
Kevin Cruijssen

Answers:


11

05AB1E9 8 字节

Ýos.œåPZ

@Emigna表示-1个字节,通过将Z(max)用作0和1s的列表来模拟(真实)any命令1

在线尝试验证所有测试用例。(注意:т标头中100的只能获取2个数字的前100个幂,而不是2个数字的第一个输入幂。它也可以使用2个输入的幂,但是效率很低并且可能如果输入足够大,则TIO超时。)

说明:

Ý            # Create a list in the range [0,n], where n is the (implicit) input
             # (or 100 in the TIO)
             #  i.e. 81024 → [0,1,2,3,...,81024]
 o           # Raise 2 to the `i`'th power for each `i` in the list
             #  → [1,2,4,8,...,451..216 (nr with 24391 digits)]
  s          # Swap to take the input
           # Create each possible partition of this input
             #  i.e. 81024 → [["8","1","0","2","4"],["8","1","0","24"],...,["8102","4"],["81024"]]
     å       # Check for each if it's in the list of powers of 2
             #  → [[1,1,0,1,1],[1,1,0,0],...,[0,1],[0]]
      P      # Check for each inner list whether all are truthy
             #  → [0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0]
       Z     # Take the maximum (and output implicitly)
             #  → 1 (truthy)

2
很好,我的解决方案是.œ.²1%O0å(也有9个字节)。0然而,我的失败了。
Xcoder先生18年

@ Mr.Xcoder嗯,.²1%O0也很聪明。我曾考虑过使用log2这种方法.²DïQ,但是它需要一个围绕它的映射才能为每个数字执行此操作,并且对于边缘情况,它确实不起作用0
凯文·克鲁伊森


6

JavaScript(Node.js)69 64 58字节

f=(x,m=10,q=!(x%m&x%m-1|!x))=>x<m?q:q&&f(x/m|0)||f(x,10*m)

在线尝试!

输入为数字。逻辑部分非常复杂,因此不知道如何解开并摆脱它q

打高尔夫球的2的幂检查得到-11个字节。



5

果冻,9 个字节

ŒṖḌl2ĊƑ€Ẹ

查看测试套件!


另类

由于精度问题,不适用于大型测试用例。

ŒṖḌæḟƑ€2Ẹ

查看测试套件!

怎么样?

程序一

ŒṖḌl2ĊƑ€Ẹ     Full program. N = integer input.
ŒṖ            All possible partitions of the digits of N.
  Ḍ           Undecimal (i.e. join to numbers).
   l2         Log2. Note: returns (-inf+nanj) for 0, so it doesn't fail.
     ĊƑ€      For each, check if the logarithm equals its ceil.
        Ẹ     Any. Return 0 if there are no truthy elements, 1 otherwise.

计划二

ŒṖḌæḟƑ€2Ẹ     Full program. N = integer input.
ŒṖ            All possible partitions of the digits of N.
  Ḍ           Undecimal (i.e. join to numbers).
     Ƒ€       For each partition, check whether its elements are invariant under...
   æḟ  2      Flooring to the nearest power of 2.
        Ẹ     Any. Return 0 if there are no truthy elements, 1 otherwise.


5

JavaScript,59个字节

s=>eval(`/^(${(g=x=>x>s?1:x+'|0*'+g(x+x))(1)})+$/`).test(s)

在线尝试!

构建/^(1|0*2|0*4|0*8|0*16|0*32|…|0*1)+$/2的幂的正则表达式,并在上进行测试s

当然,只能达到JavaScript数字的精度:最终,正则表达式中的术语看起来像1.2345678e30(或Inf)。但是,由于2的幂很容易在浮点数中准确表示,所以它们永远不会是错误的整数,我认为这会更不符合要求。

@tsh保存了14个字节。Neato!





3

APL(NARS),154个字符,308个字节

∇r←f w;g;b;z;k
   g←{⍵≤0:1⋄t=⌊t←2⍟⍵}⋄→A×⍳∼w≤9⋄r←g w⋄→0
A: z←w⋄b←0⋄k←1
B: b+←k×10∣z⋄z←⌊z÷10
   →C×⍳∼g b⋄r←∇z⋄→0×⍳r
C: k×←10⋄→B×⍳z≠0
   r←0
∇
h←{⍵=0:0⋄f ⍵}

练习的功能是h。该算法似乎不是指数或阶乘...测试:

  h¨ 4281 164 8192 81024 101 
1 1 1 1 1 
  h¨ 0 1 3 234789 256323 8132
0 1 0 0 0 1 
  h 81024256641116
1
  h 64512819237913
0





2

PHP,101字节

似乎无法达到100以下。但如果是假的话,我可以将其提高 100 101

function f($s){for($x=.5;$s>=$x*=2;)if(preg_match("/^$x(.*)$/",$s,$m)?!~$m[1]||f(+$m[1]):0)return 1;}

ñü大号大号1个

变化:

for($x=.5;$s>=$x*=2;)
while($s>=$x=1<<$i++)   # yields notices "undefined variable $i"

?!~$m[1]||f(+$m[1]):0
?~$m[1]?f(+$m[1]):1:0

PHP 5或更旧版本,95字节

function f($s){while($s>=$x=1<<$i++)if(ereg("^$x(.*)$",$s,$m)?$m[1]>""?f(+$m[1]):1:0)return 1;}

2

212个 211字节

func[n][g: func[x][(log-2 do x)% 1 = 0]repeat i 2 **((length? s: form n)- 1)[b: a:
copy[] k: i foreach c s[append b c if k % 2 = 0[alter a g rejoin b
b: copy[]]k: k / 2]append a g form c if all a[return on]]off]

在线尝试!

另一个漫长的提交,但我并不完全不满意,因为没有内置可用于查找Red中所有子字符串的功能。

更具可读性:

f: func [ n ] [
    g: func [ x ] [ (log-2 do x) % 1 = 0 ]
    repeat i 2 ** ((length? s: form n) - 1) [
        b: a: copy []
        k: i
        foreach c s [
            append b c
            if k % 2 = 0 [ 
                append a g rejoin b
                b: copy []
            ]
            k: k / 2 
        ]
        append a g form c
        if all a[ return on ]
    ]
    off
]

2

公理,198字节

G(a)==(a<=1=>2>1;x:=log_2 a;x=floor x)
F(n)==(n<=9=>G n;z:=n;b:=0;k:=1;repeat(b:=b+k*(z rem 10);z:=z quo 10;if G b and F z then return 2>1;k:=k*10;z<=0=>break);1>1)
H(n:NNI):Boolean==(n=0=>1>1;F n)

高尔夫和测试

g(a)==(a<=1=>2>1;x:=log_2 a;x=floor x)
f(n)==
   n<=9=>g n
   z:=n;b:=0;k:=1
   repeat
      b:=b+k*(z rem 10);z:=z quo 10;
      if g b and f z then return 2>1
      k:=k*10
      z<=0=>break
   1>1
h(n:NNI):Boolean==(n=0=>1>1;f n)

(15) -> [[i,h i] for i in [4281,164,8192,81024,101]]
   (15)  [[4281,true],[164,true],[8192,true],[81024,true],[101,true]]
                                                      Type: List List Any
(16) -> [[i,h i] for i in [0,1,3,234789,256323,8132]]
   (16)  [[0,false],[1,true],[3,false],[234789,false],[256323,false],[8132,true]]
                                                      Type: List List Any
(17) -> [[i,h i] for i in [81024256641116, 64512819237913]]
   (17)  [[81024256641116,true],[64512819237913,false]]
                                                      Type: List List Any
(18) -> h 44444444444444444444444444
   (18)  true
                                                            Type: Boolean
(19) -> h 44444444444444444128444444444
   (19)  true
                                                            Type: Boolean
(20) -> h 4444444444444444412825444444444
   (20)  false
                                                            Type: Boolean
(21) -> h 2222222222222244444444444444444412822222222222210248888888888882048888888888888888
   (21)  true
                                                            Type: Boolean
(22) -> h 222222222222224444444444444444441282222222222225128888888888882048888888888888888
   (22)  true
                                                            Type: Boolean

1

Japt -!,12个字节

将输入作为字符串。

ÊÆòXÄÃex_&ZÉ

试试吧


0情况下输出true,因此情况下,如1010还输出true
查理

1

C#157字节

bool P(string s,int i=1)=>i>=s.Length?((Func<ulong,bool>)((x)=>(x!=0)&&((x&(x-1))==0)))(ulong.Parse(s)):(P(s,i+1)||(P(s.Substring(0,i))&&P(s.Substring(i))));

您可以在线尝试


1

APL(NARS),70个字符,140个字节

P←{k←↑⍴⍵⋄x←11 1‼k k⋄y←⍵⋄∪{x[⍵;]⊂y}¨⍳↑⍴x}
f←{⍵=0:0⋄∨/∧/¨y=⌊y←2⍟⍎¨¨P⍕⍵}

测试:

  f¨ 4281 164 8192 81024 101
1 1 1 1 1 
  f¨ 0 1 3 234789 256323 8132
0 1 0 0 0 1 
  f 126
0

我没有尝试做其他更大的数字...我必须注意,P不是普通​​分区,但是它是一个分区,其中所有元素都是成员全部连续的子集,例如

  ⎕fmt P 'abc'
┌4──────────────────────────────────────────────────┐
│┌1─────┐ ┌2─────────┐ ┌2─────────┐ ┌3─────────────┐│
││┌3───┐│ │┌2──┐ ┌1─┐│ │┌1─┐ ┌2──┐│ │┌1─┐ ┌1─┐ ┌1─┐││
│││ abc││ ││ ab│ │ c││ ││ a│ │ bc││ ││ a│ │ b│ │ c│││
││└────┘2 │└───┘ └──┘2 │└──┘ └───┘2 │└──┘ └──┘ └──┘2│
│└∊─────┘ └∊─────────┘ └∊─────────┘ └∊─────────────┘3
└∊──────────────────────────────────────────────────┘

请注意,缺少元素((ac)(b))或更好的是,,(('ac')'b'

  ⎕fmt ,,¨('ac')'b'
┌2─────────┐
│┌2──┐ ┌1─┐│
││ ac│ │ b││
│└───┘ └──┘2
└∊─────────┘

1

POSIX ERE,91字节

(0*([1248]|16|32|64|128|256|512|1024|2048|4096|8192|16384|32768|65536|131072|262144|524288))+

根据问题中的大量文本(实际上不是必须由代码处理),这完全是作弊;它处理示例大小范围内的所有值。显然,可以牺牲大小来扩展到全部32位或64位整数类型。我主要是为了证明问题自然适合该工具而编写的。一个有趣的练习是将其重写为生成任意范围的ERE然后与之匹配的程序。


1

C(gcc)-DA=asprintf(&c,+ 108 = 124字节

p,c;f(a,i){c="^(0*(1";for(i=0;i<31;)A"%s|%d",c,1<<++i);A"%s))+$",c);regcomp(&p,c,1);a=!regexec(&p,a,0,0,0);}

在线尝试!

这将建立2的幂的正则表达式,直到2 ** 32,然后将输入字符串与其匹配。


1

Powershell,56个字节

$x=(0..63|%{1-shl$_})-join'|0*'
"$args"-match"^(0*$x)+$"

测试脚本:

$f = {

    $x=(0..63|%{1-shl$_})-join'|0*'
    "$args"-match"^(0*$x)+$"

}

@(
    ,(4281            ,$true)
    ,(164             ,$true)
    ,(8192            ,$true)
    ,(81024           ,$true)
    ,(101             ,$true)
    ,(0               ,$false)
    ,(1               ,$true)
    ,(3               ,$false)
    ,(234789          ,$false)
    ,(256323          ,$false)
    ,(8132            ,$true)
    ,("81024256641116"  ,$true)
    ,("64512819237913"  ,$false)
) | % {
    $n, $expected = $_
    $result = &$f $n
    "$($result-eq$expected): $result <- $n"
}

输出:

True: True <- 4281
True: True <- 164
True: True <- 8192
True: True <- 81024
True: True <- 101
True: False <- 0
True: True <- 1
True: False <- 3
True: False <- 234789
True: False <- 256323
True: True <- 8132
True: True <- 81024256641116
True: False <- 64512819237913

说明:

构建^(0*1|0*2|0*4|0*8|0*16|0*32|…)+$2的幂的正则表达式,并根据参数对其进行测试。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.