重複する範囲まで埋める


15

してみましょう不特定の順序での正の整数のリストであり、重複を含有することができます。正の整数のリストを出力するプログラムや関数書き込みマージすること(順序は重要ではない)は、そのような及び完全整数の同じ範囲に分割することができる最小のリストに結果を[1..i] iはあるがLの最大要素M L M [ 1 .. i ] i LLMLM[1..i]L

させてくださいL = [5,3,3,2,7]。の最大要素はLです7。特定の整数が発生するほとんどの回数は232回表示されます)。したがって、我々は出力にリスト必要Mに完了することができますL私たちが構築することができるよう2に整数の範囲1にします7

そのため、を出力する必要がありますM = [1,1,2,4,4,5,6,6,7]。これにより、から1までの各整数が7出現します2

入力と出力

  • リストに似た言語で何かを使用します。入力と出力に使用されるデータ構造は同じでなければなりません。
  • 入力リストには正の整数のみが含まれます。
  • 入力リストは空になりません。
  • 入力リストがソートされていると想定することはできません
  • 出力リストの順序は重要ではありません。

テストケース

Input                  Output
[1]                    []
[7]                    [1, 2, 3, 4, 5, 6]
[1, 1, 1]              []
[1, 8]                 [2, 3, 4, 5, 6, 7]
[3, 3, 3, 3]           [1, 1, 1, 1, 2, 2, 2, 2]
[5, 2, 4, 5, 2]        [1, 1, 3, 3, 4]
[5, 2, 4, 5, 5]        [1, 1, 1, 2, 2, 3, 3, 3, 4, 4]
[5, 3, 3, 2, 7]        [1, 1, 2, 4, 4, 5, 6, 6, 7]

得点

これはであるため、バイト単位の最短回答が優先されます。


明確にするために、テストケースとステートメントが互いに矛盾しているiので、Lorの最大の要素はM何ですか?
クロッペブ

@Kroppebはのi最大の要素でありL、仕様のタイプミスでした。
18

「LとMを結合すると、整数[1..i]の同一範囲に完全に分割できるリストが作成されます」に戻っM=[1,1,2,2,3]L=[3]も問題ありませんか?
tsh

@tshいいえ、返されるはず[1,2]です。範囲の最小数になることを明確にするために、それを明確にします。
18

1
@digEmAll完了。
18

回答:


5

ゼリー、9 バイト

Jonathan Allanのおかげで1バイト節約されました。フッターはメインリンクを呼び出し、テストケースに一致するように結果を並べ替え、出力をグリッドとしてフォーマットします。

RṀẋLƙ`Ṁœ-

オンラインでお試しください!またはテストスイートをチェックしてください!

代替案

ṀRẋLƙ`Ṁœ-
RṀẋṢŒɠṀƊœ-
ṀRẋṢŒɠṀƊœ-
LƙɓṀRẋṀœ-⁸
LƙɓRṀẋṀœ-⁸

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

説明

ṀRẋLƙ`Ṁœ-完全なプログラム。N =入力。
ṀR範囲は1〜max(N):[1 ... max(N)]
   Lƙ`同一の要素で形成されたグループ上のマップ長。
  above上記の結果の各Tについて、範囲をT回繰り返します。
      Ṁ最大。基本的に、範囲をmax(^^)回繰り返します。
       œ-Nとのマルチセット差

7

Perl 6の37の 33バイト

nwellnhofのおかげで-4バイト!

{^.keys.max+1 xx.values.max$_}

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

Bagを受け取り、値のBagを返す匿名コードブロック。

説明:

{                             } # Anonymous code block
 ^.keys.max+1  # Create a range from 1 to the maximum value of the list
              xx  # Multiply the list by:
                .values.max      # The amount of the most common element
                           $_   # Subtract the original Bag

いいね!2番目のオペランドをBagに強制することで、数バイトを節約できます{^.max+1 xx.Bag.values.max∖.Bag}
。– nwellnhof

@nwellnhofああ、ありがとう!2番目の引数がバッグである可能性があることに
ジョーキング

OTOHの課題は、入力と出力のデータ構造が同じでなければならないことです。Bagsを入力として、{^.keys.max+1 xx.values.max∖$_}別のバイトを保存します。
-nwellnhof

6

R59 49 48バイト

rep(s<-1:max(L<-scan()),max(y<-table(c(L,s)))-y)

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


私は基本的にrep異なる2番目の引数を生成する55バイトの答えを持っていますが、それ以外はあなたのものと同じです。自分で投稿することもできますが、最初にあなたの顔を見ない限り、私はそれを考えたとは思いません。それを見つけるためにあなたに挑戦します!
ジュゼッペ

@ジュゼッペ:それがあなたのアプローチに似ているかどうかはわかりませんが、10バイト節約しました:D
digEmAll

ええ、いいえ、私は使用してsplitいましたtabulateが、はるかに優れています!
ジュゼッペ

うーん...今、私は興味がありますが、これにどのようにスプリットを使用しましたか?
digEmAll

1
私が持っていたx=max(L<-scan());rep(1:x,1:x-lengths(split(L,c(L,1:x))))ようなテストケースのために仕事をしませんさらにテスト時にどの7...
ジュゼッペ・


4

05AB1E17 16 17 バイト

¢Z¹ZLŠŠи{ðý¹vyõ.;

@ Mr.Xcoderのおかげで-1バイト。
回避策のバグ修正後に+1バイト。

たぶん私は完全にそれを過ぎて見えますが、05AB1Eも削除に、リストのすべての要素持っていないBリストからAを ..(EDIT:それは確かにない...)私はすべての複数回を削除する方法を知っているが、ない各一回.. (マルチセットの差)

間違いなくゴルフができます。それに本当に満足していません、tbh .. 説明を追加する前に、もう少しゴルフできるかどうかを確認します編集:説明を追加しました。

オンラインそれを試してみたり、すべてのテストケースを確認してください

説明:

¢         # Get the occurrences for each item in the (implicit) input-List
          #  i.e. [5,3,3,2,7] → [1,2,2,1,1]
 Z        # And get the maximum
          #  i.e. [1,2,2,1,1] → 2
¹Z        # Also get the maximum from the input-list itself
          #  i.e. [5,3,3,2,7] → 7
  L       # And create a list in the range [1, max]
          #  i.e. 7 → [1,2,3,4,5,6,7]
ŠŠ        # Two triple-swaps so the stack order becomes:
          # trash we don't need; ranged list; occurrence max
  и       # Repeat the ranged list the occurence amount of times
          #  i.e. [1,2,3,4,5,6,7] and 2 → [1,2,3,4,5,6,7,1,2,3,4,5,6,7]

          #Now the work-around bit because 05AB1E lacks a builtin for multiset difference..
{         # Sort the list
          #  i.e. [1,2,3,4,5,6,7,1,2,3,4,5,6,7] → [1,1,2,2,3,3,4,4,5,5,6,6,7,7]
 ðý       # Join this list by spaces
          #  i.e. [1,1,2,2,3,3,4,4,5,5,6,6,7,7] → '1 1 2 2 3 3 4 4 5 5 6 6 7 7'
   ¹v     # Loop `y` over the input-List:
     yõ.; # Replace every first occurrence of `y` with an empty string
          #  i.e. '1 1 2 2 3 3 4 4 5 5 6 6 7 7' and 3 → '1 1 2 2  3 4 4 5 5 6 6 7 7'

探していますK a,b Push a without b'sか?ああ、「1回ずつ」...うーん
ジョナサンアラン

@JonathanAllanいいえ、動作しません。最初に出現したものではなく、すべての出現を削除します。ケビンは、マルチセットの違いのようなものを探しています
氏Xcoder

@JonathanAllanほぼ。[1,2,3,4,5,6,7,1,2,3,4,5,6,7][5,3,3,2,7]Kで結果[1,4,6,1,4,6]残念ながら。マルチセットの違いを行う代わりに、すべてのアイテムを削除します。
ケビンCruijssen

1
¢ZIZLŠŠи1バイト保存する必要があります
ミスターXcoder

@ Mr.Xcoderありがとう、しかしそれは私がゴルフを探していた部分ではありませんでした。; P 2トリプルスワップカウントの後にアクセスを削除するよりも短くなっているかおかしい...
ケビンCruijssen

3

R59 55バイト

vecsetsパッケージを使用して、回答の長さをいくらか減らすことができます。ではgl、私たちは、注文した出力を得ることができます。これはTIOでは機能しません。関数定義のない@digEmAllスタイルの(むしろ賢い)ソリューションに従って、これは55バイトのソリューションと見なすことができます。

vecsets::vsetdiff(c(gl(m<-max(L<-scan()),sum(L==m))),L)

f=function(x){scan<-function()x
vecsets::vsetdiff(c(gl(m<-max(L<-scan()),sum(L==m))),L)
}

f(c(1))                # expected: integer(0)
f(c(7))                # expected: c(1, 2, 3, 4, 5, 6)
f(c(1, 1, 1))          # expected: integer(0)
f(c(1, 8))             # expected: c(2, 3, 4, 5, 6, 7)
f(c(3, 3, 3, 3))       # expected: c(1, 1, 1, 1, 2, 2, 2, 2)
f(c(5, 2, 4, 5, 2))    # expected: c(1, 1, 3, 3, 4)
f(c(5, 2, 4, 5, 5))    # expected: c(1, 1, 1, 2, 2, 3, 3, 3, 4, 4)

2
digEmAllの答えは完全に有効です。stdin経由で入力を受け取ります!
ジュゼッペ

1
また、これはベースRではないため、これは別の言語「R + vecsets」と見なされる必要があります(そのための関連するメタディスカッションは見つかりませんが、それが標準的なプラクティスであることは知っています)
ジュゼッペ

1
最大値が繰り返される最大値でない場合、これは失敗します。たとえば、tryf(c(5,3,3,2,7))
digEmAll

3

JavaScript(ES6)、98バイト

これは、100バイト未満でゴルフをするのがかなり難しいことがわかりました。より良いアプローチがあるかもしれません。

a=>(a.map(o=M=m=n=>m=(c=o[M=n<M?M:n,n]=-~o[n])<m?m:c),g=k=>k?o[k]^m?[...g(k,o(k)),k]:g(k-1):[])(M)

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

どうやって?

最初に入力配列a[]を調べて、次のデータを収集します。

  • M =入力配列で見つかった最高の要素
  • m =同じ要素の最大出現回数
  • o[n] =の発生回数 n

o主機能として定義されているが、基礎となるオブジェクトはまた、発生回数を記憶するために使用されます。

a.map(                      // a[] = input array()
  o =                       // o = callback function of map()
  M = m =                   // initialize m and M to non-numeric values
  n =>                      // for each value n in a[]:
    m = (                   //   this code block will eventually update m
      c = o[                //     c = updated value of o[n]
        M = n < M ? M : n,  //     update M to max(M, n)
        n                   //     actual index into o[]
      ] = -~o[n]            //     increment o[n]
    ) < m ?                 //   if o[n] is less than m:
      m                     //     let m unchanged
    :                       //   else:
      c                     //     set it to c
)                           // end of map()

次に、再帰関数g()を使用して出力を作成します。

(g = k =>                   // k = current value
  k ?                       // if k is not equal to 0:
    o[k] ^ m ?              //   if o[k] is not equal to m:
      [ ...g(k, o(k)),      //     increment o[k] and do a recursive call with k unchanged
        k ]                 //     append k to the output
    :                       //   else:
      g(k - 1)              //     do a recursive call with k - 1
  :                         // else:
    []                      //   stop recursion
)(M)                        // initial call to g() with k = M

3

Haskell、72バイト

import Data.List
f l=(last(sortOn(0<$)$group$sort l)>>[1..maximum l])\\l

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

            sort l      -- sort input list
       group            -- group identical elements
   sortOn(0<$)          -- sort by length
 last                   -- take the last element, i.e. the list
                        -- of the most common element
      >>[1..maximum l]  -- replace each of it's elements
                        -- with the list [1..maximum l]
  \\l                   -- remove elements of the input list

3

Brachylog18 17バイト

⌉⟦₁;Ij₎R⊇p?;.cpR∧

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

@Kroppebのおかげで1バイト節約されました。

説明

⌉                  Take the largest element in the Input
 ⟦₁                 Construct the range [1, …, largest element in the Input]
   ;Ij₎R            Juxtapose that range to itself I times, I being unknown; 
                       call the result R
       R⊇p?         The Input must be an ordered subset of R, up to a permutation
          ?;.c      Concatenate the Input and the Output 
                       (the Output being unknown at this point)
              pR    This concatenation must result in R, up to a permutation
                ∧   (Find a fitting value for the Output that verifies all of this)

1
代わりに使用できますot
-Kroppeb

2

Java 10、186バイト

import java.util.*;L->{Integer m=0,f=0,t;for(int i:L){m=i>m?i:m;f=(t=Collections.frequency(L,i))>f?t:f;}var r=new Stack();for(;m>0;m--)for(t=f;t-->0;)if(!L.remove(m))r.add(m);return r;}

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

説明:

import java.util.*;   // Required import for Collections and Stack
L->{                  // Method with Integer-list as both parameter and return-type
  Integer m=0,        //  Max, starting at 0
          f=0,        //  Max frequency, starting at 0
          t;          //  Temp integer
  for(int i:L){       //  Loop over the input-List
    m=i>m?i:m;        //   If the current item is larger than the max, set it as new max
    f=(t=Collections.frequency(L,i))>f?t:f;}
                      //   If the current frequency is larger than the max freq, set it as new max
  var r=new Stack();  //  Result-List
  for(;m>0;m--)       //  Loop the maximum in the range [m,0)
    for(t=f;t-->0;)   //   Inner loop the frequency amount of times
      if(!L.remove(m))//    Remove `m` from the input list
                      //    If we were unable to remove it:
        r.add(m);     //     Add it to the result-List
  return r;}          //  Return the result-List



2

MATL、14バイト

入力は、;セパレータとしての列ベクトルです。

llXQtn:yX>b-Y"

オンラインでお試しください!または、すべてのテストケースを確認します(--空の出力を識別できるように、各出力後に表示されます)。

説明

[5; 2; 4; 5; 5]例として入力を検討してください。

llXQ     % Implicit input. Accumarray with sum. This counts occurrences
         % of each number, filling with zeros for numbers not present
         % STACK: [0; 1; 0; 1; 3]
tn:      % Duplicate, number of elements, range
         % STACK: [0; 1; 0; 1; 3], [1 2 3 4 5]
yX>      % Duplicate from below, maximum of array
         % STACK: [0; 1; 0; 1; 3], [1 2 3 4 5], 3 
b        % Bubble up
         % STACK: [1 2 3 4 5], 3, [0; 1; 0; 1; 3] 
-        % Subtract, element-wise
         % STACK: [1 2 3 4 5], [3; 2; 3; 2; 0] 
Y"       % Repelem (run-length decode). Implicit display
         % STACK: [1 1 1 2 2 3 3 3 4 4]


1

、19バイト

F…·¹⌈θE⁻⌈Eθ№θκ№θιIι

オンラインでお試しください!リンクは、コードの詳細バージョンです。整数が正ではなく負ではない場合、16バイトでした。説明:

     θ              First input
    ⌈               Maximum
 …·¹                Inclusive range starting at 1
F                   Loop over range
          θ         First input
         E          Loop over values
            θ       First input
             κ      Inner loop value
           №        Count occurrences
        ⌈           Maximum
               θ    First input
                ι   Outer loop value
              №     Count occurrences
       ⁻            Subtract
      E             Map over implicit range
                  ι Current value
                 I  Cast to string
                    Implicitly print on separate lines


1

プロローグ(SWI)、211バイト

Prologでプログラミングしてからしばらく経ちました。間違いなくさらにゴルフをすることができますが、私は母のために勉強する試験があります。

コード

f(L,X):-max_list(L,M),f(L,M,[],X,M).
f([],0,_,[],_).
f(L,0,_,A,M):-f(L,M,[],A,M).
f([],I,H,[I|A],M):-N is I-1,f(H,N,[],A,M).
f([I|R],I,H,A,M):-append(H,R,S),f(S,I,[],[I|A],M).
f([H|R],I,G,A,M):-f(R,I,[H|G],A,M).

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

ゴルフされていないバージョン

f(List, Result) :- 
    max_list(List, MaxIndex), 
    f(List, MaxIndex, [], Result, MaxIndex).

f([], 0, _, [], _).

f(List, 0, _, Acc, MaxIndex) :- 
    f(List, MaxIndex, [], Acc, MaxIndex).

f([], Index, History, [Index | Acc], MaxIndex) :- 
    NewIndex is Index - 1, f(History, NewIndex, [], Acc, MaxIndex).

f([Index | Remaining], Index, History, Acc, MaxIndex) :-
    append(History, Remaining, Result),
    f(Result, Index, [], [Index | Acc], MaxIndex).

f([Head | Remaining], Index, History, Acc, MaxIndex) :- 
    f(Remaining, Index, [Head | History], Acc, MaxIndex).

1
驚くほど長くはありません!
18

1

Clojure、94バイト

#(for[F[(frequencies %)]i(range 1(+(apply max %)1))_(range(-(apply max(vals F))(or(F i)0)))]i)

1

C ++、234バイト

#include<vector>
#include<map>
using X=std::vector<int>;
X f(X x){int q,z;q=z=0;std::map<int,int>y;X o;
for(auto i:x)++y[i];for(auto i:y)q=q>i.second?q:i.second;
for(;++z<=y.rbegin()->first;)for(;y[z]++<q;)o.push_back(z);return o;}

(関数本体の改行は読みやすさのためです)。

この関数は、intのベクトルを受け取って返します。利用するstd::map入力リストの最大要素を見つけるために、また各個別要素の出現をカウントためします。

説明:

// necessary includes. Note that each of these is longer than whole Jelly program!
#include <vector>
#include <map>

// this type occurs three times in the code
using X = std::vector<int>;

// The function
X f (X x)
{
   // initialize some variables
   int q, z; // q will hold the max count
   q = z = 0;
   std::map <int, int> y; // The map for sorting
   X o; // The output vector

   // Populate the map, effectively finding the max element and counts for all of them
   for (auto i : x)
       ++y[i];

   // find the max count
   for (auto i : y)
       q = q > i.second ? q : i.second;

   // Populate the output vector

   // Iterate all possible values from 1 to the max element (which is the key at y.rbegin ())
   // Note that z was initialized at 0, so we preincrement it when checking the condition
   for (; ++z <= y.rbegin ()->first;)
       // for each possible value, append the necessary quantity of it to the output
       for(; y[z]++ < q;)
           o.push_back (z);

   return o;
}


1

C(gcc)、177バイト

入力と出力は、stdinとstdoutを介して行われます。両方の配列は2 ^ 15個の要素で制限されていますが、2 ^ 99個の要素と同じ大きさにすることができます。

f(j){int n=0,m=0,i=0,a[1<<15],b[1<<15]={0};for(;scanf("%i",&a[i])>0;i++)j=a[i],m=j>m?j:m,b[j-1]++;for(i=m;i--;)n=b[i]>n?b[i]:n;for(i=m;i--;)for(j=n-b[i];j--;)printf("%i ",i+1);}

いくつかのフォーマット:

f(j){
  int n=0, m=0, i=0, a[1<<15], b[1<<15]={0};
  for(;scanf("%i",&a[i])>0;i++) j=a[i], m=j>m?j:m, b[j-1]++;
  for(i=m;i--;) n=b[i]>n?b[i]:n;
  for(i=m;i--;) for(j=n-b[i];j--;) printf("%i ",i+1);
}

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.