適切な合計で行列の数を計算する


12

Steenrod代数のMilnor基底で単項式を乗算する場合、アルゴリズムの一部には特定の「許容行列」の列挙が含まれます。

非負整数r 1、...、r mおよび s 1、...、s nの 2つのリストが与えられ、非負整数Xの行列

行列

次の場合に許容されます

  1. j番目の列の合計はs j以下です。

    列合計制約

  2. 2のべき乗で重み付けされたi番目の行の合計は、r i以下です。

    行合計制約

仕事

リストr 1、...、r mおよびs 1s 1、...、s nのペアを取り、これらのリストに許容される行列の数を計算するプログラムを作成します。プログラムは、必要に応じて、オプションでmおよびnを追加の引数として使用できます。

  • これらの番号は、好きな形式で入力できます。たとえば、リストにグループ化したり、単項でエンコードしたり、その他何でもかまいません。

  • 出力は正の整数でなければなりません

  • 標準の抜け穴が適用されます。

得点

これはコードゴルフです。バイト単位の最短ソリューションが勝ちです。

例:

以下の場合[2][1]、2人の許容行列があります。

例1

[4][1,1]3人の許容行列があります。

例2

[2,4][1,1]5人の許容行列があります。

例3

テストケース:

   Input: [1], [2]
   Output: 1

   Input: [2], [1]
   Output: 2

   Input: [4], [1,1]
   Output: 3

   Input: [2,4], [1,1]   
   Output: 5      

   Input: [3,5,7], [1,2]
   Output: 14

   Input: [7, 10], [1, 1, 1]
   Output: 15       

   Input: [3, 6, 16, 33], [0, 1, 1, 1, 1]
   Output: 38      

   Input: [7, 8], [3, 3, 1]
   Output: 44

   Input: [2, 6, 15, 18], [1, 1, 1, 1, 1]
   Output: 90       

   Input: [2, 6, 7, 16], [1, 3, 2]
   Output: 128

   Input: [2, 7, 16], [3, 3, 1, 1]
   Output: 175

1
IMOの定義は、行列の最初の行と列を失い、1からインデックスを付け、==の代わりに<=を使用すると理解しやすくなります。
ピーターテイラー

いいでしょう 私は数学の教科書から定義をコピーしたばかりで、それらのエントリに実際に使用しました。
フード

回答:


3

JavaScript(ES7)、163バイト

f=([R,...x],s)=>1/R?[...Array(R**s.length)].reduce((k,_,n)=>(a=s.map((_,i)=>n/R**i%R|0)).some(c=>(p+=c<<++j)>R,p=j=0)?k:k+f(x,s.map((v,i)=>v-a[i])),0):!/-/.test(s)

テストケース

NB:このスニペットから最も時間のかかる2つのテストケースを削除しましたが、同様に合格するはずです。

コメント済み

f = (                               // f = recursive function taking:
  [R,                               //   - the input array r[] splitted into:
      ...x],                        //     R = next element / x = remaining elements
  s                                 //   - the input array s[]
) =>                                //
  1 / R ?                           // if R is defined:
    [...Array(R**s.length)]         //   for each n in [0, ..., R**s.length - 1],
    .reduce((k, _, n) =>            //   using k as an accumulator:
      (a =                          //     build the next combination a[] of
        s.map((_, i) =>             //     N elements in [0, ..., R - 1]
          n / R**i % R | 0          //     where N is the length of s[]
        )                           //
      ).some(c =>                   //     for each element c in a[]:
        (p += c << ++j)             //       increment j; add c * (2**j) to p
        > R,                        //       exit with a truthy value if p > R
        p = j = 0                   //       start with p = j = 0
      ) ?                           //     end of some(); if truthy:
        k                           //       just return k unchanged
      :                             //     else:
        k +                         //       add to k the result of
        f(                          //       a recursive call to f() with:
          x,                        //         the remaining elements of r[]
          s.map((v, i) => v - a[i]) //         s[] updated by subtracting the values of a[]
        ),                          //       end of recursive call
      0                             //     initial value of the accumulator k
    )                               //   end of reduce()
  :                                 // else:
    !/-/.test(s)                    //   return true if there's no negative value in s[]

1

ゼリー、26 バイト

UḄ€Ḥ>⁴
0rŒpṗ⁴L¤µS>³;ÇẸµÐḟL

カウントを出力するSRを取る完全なプログラム

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

どうやって?

UḄ€Ḥ>⁴ - Link 1, row-wise comparisons: list of lists, M
U      - upend (reverse each)
 Ḅ€    - convert €ach from binary (note bit-domain is unrestricted, e.g. [3,4,5] -> 12+8+5)
   Ḥ   - double (vectorises) (equivalent to the required pre-bit-shift by one)
     ⁴ - program's 2nd input, R
    >  - greater than? (vectorises)

0rŒpṗ⁴L¤µS>³;ÇẸµÐḟL - Main link: list S, list R
0r                  - inclusive range from 0 to s for s in S
  Œp                - Cartesian product of those lists
       ¤            - nilad followed by link(s) as a nilad:
     ⁴              -   program's 2nd input, R
      L             -   length
    ṗ               - Cartesian power = all M with len(R) rows & column values in [0,s]
        µ      µÐḟ  - filter discard if:
         S          -   sum (vectorises) = column sums
           ³        -   program's 1st input, S
          >         -   greater than? (vectorises) = column sum > s for s in S
             Ç      -   call the last link (1) as a monad = sum(2^j × row) > r for r in R
            ;       -   concatenate
              Ẹ     -   any truthy?
                  L - length


0

Mathematica 139バイト

Tr@Boole[k=Length[a=#]+1;AllTrue[a-Rest[##+0],#>=0&]&@@@Tuples[BinCounts[#,{2r~Prepend~0}]&/@IntegerPartitions[#,All,r=2^Range@k/2]&/@#2]]&

オンラインで試す

説明:各r iを2のべき乗に分割し、整数ごとに2のべき乗に1回分解してすべてのタプルを作成し、s iのリストから列の合計を減算します。残りのすべてのエントリが正になるタプルの数をカウントします。


2
通常、他の人がその言語で既に提出するまで、あなた自身の挑戦に答えることは勧められません。
ハイパーニュートリノ

@HyperNeutrinoあなたがそれが良い考えだと思うなら、私はそれを削除することができます。これは非常に慎重にゴルフされていないので、他の人がより良くできる可能性が高いです。
フッド

3
解決可能であることを証明できるのは悪いことではありませんが、ソリューションをすぐに台無しにすることはお勧めしません。多分最初に1週間か何かを待つでしょう。
エリックアウトゴルファー

投稿したので、削除するか、そのままにしておくべきですか?
フード

そのままにします。Pace Erik私はそれが何も損なわないとは思いません。解の存在は、列和制約を順守する行列が有限であり、簡単に生成されるという事実から明らかです。
ピーターテイラー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.