nへの最短パスの数を数える


21

このコード課題は、あなたが到達するためのいくつかの方法を計算していますnから始まる2形式のマップ使用してxx+xj(とj非負整数)、及びステップの最小数でそうすることを。

(注、これはOEISシーケンスA307092に関連しています。)

したがって、たとえば、3つのマップが必要であり、2から13を送信する3つのマップの2つの異なるシーケンスがあるため、f(13)=2です。213

xx+x0xx+x2xx+x0orxx+x2xx+x1xx+x0

その結果231213又は261213

値の例

f(2)   = 1 (via [])
f(3)   = 1 (via [0])
f(4)   = 1 (via [1])
f(5)   = 1 (via [1,0])
f(12)  = 2 (via [0,2] or [2,1])
f(13)  = 2 (via [0,2,0] or [2,1,0], shown above)
f(19)  = 1 (via [4,0])
f(20)  = 2 (via [1,2] or [3,1])
f(226) = 3 (via [2,0,2,1,0,1], [3,2,0,0,0,1], or [2,3,0,0,0,0])
f(372) = 4 (via [3,0,1,0,1,1,0,1,1], [1,1,0,2,0,0,0,1,1], [0,2,0,2,0,0,0,0,1], or [2,1,0,2,0,0,0,0,1])

チャレンジ

課題は整数を取るプログラム生成することであるn2入力として、およびは異なるパスの数を出力2n形のマップの最小数を介してxx+xj

これはであるため、最小バイトが勝ちます。


1
^記号は累乗を示すことを明確に注意する必要があると思います。XORも可能です(たとえば、Cは^ビットごとのXORに使用します)。
ラミリーズ

1
@Ramillies多分それはMathJaxに変更する必要があります。すなわちの代わりにです。x=x+xjx -> x + x^j
ケビンクルーッセン

@KevinCruijssen:良い点、それは確かに役立つでしょう。
ラミリーズ

これをOEISにA309997として追加しました。(承認されるまでドラフトになります。)
Peter Kagey

回答:



5

JavaScript(ES6)、  111 ... 84  80バイト

1n=2

f=(n,j)=>(g=(i,x,e=1)=>i?e>n?g(i-1,x):g(i-1,x+e)+g(i,x,e*x):x==n)(j,2)||f(n,-~j)

オンラインでお試しください!

コメント済み

f = (                     // f is the main recursive function taking:
  n,                      //   n = input
  j                       //   j = maximum number of steps
) => (                    //
  g = (                   // g is another recursive function taking:
    i,                    //   i = number of remaining steps
    x,                    //   x = current sum
    e = 1                 //   e = current exponentiated part
  ) =>                    //
    i ?                   // if there's still at least one step to go:
      e > n ?             //   if e is greater than n:
                          //     add the result of a recursive call with:
        g(i - 1, x)       //       i - 1, x unchanged and e = 1
      :                   //   else:
                          //     add the sum of recursive calls with:
        g(i - 1, x + e) + //       i - 1, x + e and e = 1
        g(i, x, e * x)    //       i unchanged, x unchanged and e = e * x
    :                     // else:
      x == n              //   stop recursion; return 1 if x = n
)(j, 2)                   // initial call to g with i = j and x = 2
|| f(n, -~j)              // if it fails, try again with j + 1

4

ハスケル 78 75バイト

この実装では、必要なすべてのマッピングの反復的な「ツリー」で息を先に検索しx -> x + x^jます。

j#x=x+x^j
f n=[sum[1|x<-l,x==n]|l<-iterate((#)<$>[0..n]<*>)[2],n`elem`l]!!0

オンラインでお試しください!

説明

-- computes the mapping x -> x + x^j
j#x=x+x^j                          
--iteratively apply this function for all exponents [0,1,...,n] (for all previous values, starting with the only value [2])
                            iterate((#)<$>[0..n]<*>)[2] 
-- find each iteration where our target number occurs
    [                   |l<-...........................,n`elem`l] 
-- find how many times it occurs
     sum   [1|x<-l,x==n] 
-- pick the first entry
f n=.............................................................!!0




1

CJam(27バイト)

qi2a{{_W$,f#f+~2}%_W$&!}ge=

オンラインデモ

警告:これは非常に高速でメモリ集約型になります。

解剖:

qi            e# Read input and parse to int n (accessed from the bottom of the stack as W$)
2a            e# Start with [2]
{             e# Loop
  {           e#   Map each integer x in the current list
    _W$,f#f+~ e#     to x+x^i for 0 <= i < n
    2         e#   and add a bonus 2 for the special case
  }%          e#   Gather these in the new list
  _W$&!       e#   Until the list contains an n
}g
e=            e# Count occurrences

ボーナス2s(ループはループよりも高価な2ので、inputの特殊なケースを処理するため)は、リストのサイズが非常に速く増加することを意味し、指数の使用は、リスト内のより大きな数値の値が増加することを意味しますとても早い。whiledo-whilen-1



1

R78 77バイト

function(n,x=2){while(!{a=sum(x==n)})x=rep(D<-x[x<n],n+1)+outer(D,0:n,'^')
a}

オンラインでお試しください!

単純化された幅優先検索の使用

説明付きの展開されていないコード:

function(n){                              # function taking the target value n

  x=2                                     # initialize vector of x's with 2

  while(!(a<-sum(x==n))) {                # count how many x's are equal to n and store in a
                                          # loop while a == 0

    x=rep(D<-x[x<n],n+1)+outer(D,0:n,'^') # recreate the vector of x's 
                                          # with the next values: x + x^0:n
  }
a                                         # return a
}   

巨大なメモリ割り当てを備えたより短いバージョン(より大きなケースでは失敗):

R70 69バイト

function(n,x=2){while(!{a=sum(x==n)})x=rep(x,n+1)+outer(x,0:n,'^')
a}

オンラインでお試しください!

@RobinRyderのおかげで-1バイト


!(a<-sum(x==n))可能性!{a=sum(x==n)}のために-1の両方のケースでバイト。
ロビンライダー

0

Pyth、24バイト

VQIJ/mu+G^GHd2^U.lQ2NQJB

オンラインでお試しください!

これは正しい出力を生成するはずですが、非常に遅いです(TIOで372テストケースがタイムアウトします)。私は交換することによって、それを短くすることができ.lQ2Q、これはランタイムが恐ろしいなるだろう。

注:到達不能な番号については出力を生成しません n1

説明

VQ                        # for N in range(Q (=input)):
   J                      #   J =
     m                    #     map(lambda d:
      u                   #       reduce(lambda G,H:
       +G^GH              #         G + G^H,
            d2            #         d (list), 2 (starting value) ),
              ^U.lQ2N     #       cartesian_product(range(log(Q, 2)), N)
    /                Q    #     .count(Q)
  IJ                  JB  #   if J: print(J); break
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.