Adaアレイをゴルフする


10

バックグラウンド

Adaは、その簡潔さで正確に知られているわけではないプログラミング言語です。

ただし、その配列リテラル構文では、理論的にはかなり簡潔な配列指定が可能です。以下は、配列リテラル 構文の簡単なEBNF記述です(bottlecaps.deに渡すことができます:

array ::= positional_array | named_array
positional_array ::= expression ',' expression (',' expression)*
                   | expression (',' expression)* ',' 'others' '=>' expression
named_array ::= component_association (',' component_association)*
component_association ::= discrete_choice_list '=>' expression
discrete_choice_list ::= discrete_choice ('|' discrete_choice)*
discrete_choice ::= expression ('..' expression)? | 'others'

簡単にするために、整数の1次元配列に限定します。つまり、式の値には整数のみを使用します。おそらく、将来の課題で、より高度なもの(変数や多次元配列の宣言など)を試すことができます。整数リテラルを使用する必要ありませ

わかりやすくするために、Ada配列リテラルとpython-esqueの同等の表現の例をいくつか示します。

(1, 2, 3) = [1, 2, 3]
(1, others => 2) = [1, 2, 2, ..., 2]
(others => 1) = [1, 1, ..., 1]
(1 => 1, 2 => 3) = [1, 3]
(1|2 => 1, 3 => 2) = [1, 1, 2]
(1 => 1, 3 => 2, others => 3) = [1, 3, 2, 3, 3, ..., 3]

チャレンジ

この課題の目標は、指定された入力配列の最短バイト数のAda配列リテラルを出力することです。Ada配列は任意のインデックスから開始できるため、各値がシーケンシャルである限り、開始インデックスを希望するものから選択できます。この例では、Adaの慣用句である1から開始することを選択していますが、他の整数から開始することもできます。

入力

入力は、都合のよい形式の整数のリストで構成されます。

出力

出力は、入力整数のリストを表す最短の有効なAda配列リテラルを表すテキスト文字列になります。この配列で任意の開始インデックスを使用できますが、選択内容(それが何であれ)を回答で指定する必要があります(開始インデックスも動的である場合があります)。

整数は、例のように、符号付き10進数として表されます。この課題は、整数値のゴルフをカバーしていません。

ここではいくつかの例を示します。

Simple: [1, 2, 3] -> (1,2,3)
Range: [1, 1, 1, 1, 1, 1, 1,] -> (1..7=>1)
Others: [1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1] -> (6=>2,others=>1)
Multiple Ranges: [1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1] -> (6..10|16..20=>2,others=>1)
Tiny Ranges: [1,1,2,2,1,1,1,1,1] -> (3|4=>2,others=>1)
Far Range: [[1]*5, [2]*100, [3]*5] -> (1..5=>1,6..105=>2,others=>3)
Alternation: [1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2] -> (1|3|5|7|9|11|13|15|17=>1,others=>2)
Big Number: [1234567890,1,1234567890] -> (2=>1,1|3=>1234567890)
Big-ish Number: [1234567,1,1234567] -> (1234567,1,1234567)
Solo: [-1] -> (1=>-1)
Huge Input: [[0],[1]*1000000000] -> (0,others=>1)
Positional Others: [1, 2, 3, 3, 3, 3, 3, 3] -> (1,2,others=>3)
Range and Choice, no Others: [1,1,1,12,12,3,3,3,3,3,3,3,3,3,3,4] -> (1..3=>1,4|5=>12,6..15=>3,16=>4)

最小要件

  • 少なくとも100個の数字と、長さが256個以上の数字の入力をサポートします。

  • そのようなすべての入力に対して正しい結果を生成する

    • 最後に「その他」を置くことを含む
    • 単一の項目配列のインデックスを配置することを含みます
  • 上記の各入力を(できればTIOで)1分以内に終了します。

バイト単位の最短のソリューションが勝ちます!

リファレンス実装

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

この実装では、入力を配列として使用し、各文字を数値にします。大文字は大きな値のための特別な定数です。プログラム引数は、使用する「開始インデックス」です。

TIOリンクの「コード」セクションは問題の正しい解決策ですが、「ヘッダー」と「フッター」はテスト構造を実装しています。


3
「遠方範囲」のケースは、選択した場合にそのフォーマットで入力を取る可能性があることを示すため、または通常の配列と同様にその入力フォーマットを処理できる必要があることを強調するために存在しますか?また、最後のテストケースは単に出力されるべきではありません(-1)か?
シャギー

3
「遠距離」のケースは、スペースを節約するためにそのように書かれているだけで、実際の入力は110の整数で構成されるフラット配列になりますが、出力は正しいです。その目的は、「others」キーワードがより長い表現を持つより短い範囲に移動する必要がある場合を示すことです。(106..110=>3,others=>2長くなります)文法では単一要素の位置配列(positional_array ::= expression ',' expression (',' expression)*)が許可されていないため、最後のケースにはインデックスが必要です
LambdaBeta

1
1(1=>1,others=>1)(1..100000000=>1)

2
(1|3=>1234567,2=>1)別の有効な出力であることを確認してください[1234567,1,1234567]
アーノールド

1
選択する言語としてAdaを使用することはできますか?
ベンジャミンアー

回答:


5

JavaScript(ES6)、 307  304バイト

@KevinCruijssenのおかげで2バイト節約

恥ずかしいほど長い...

a=>[b=([...a,m=''].map(o=(v,i)=>(i?p==v?!++n:m=o[(o[p]=[o[p]&&o[p]+'|']+(n?i-n+(n>1?'..':'|')+i:i))[m.length]?(x=i-n,j=p):j]:1)&&(p=v,M=n=0)),Object.keys(o).map(k=>j-k|!m[6]?o[k]+'=>'+k:O,O='others=>'+j).sort()),1/a[1]?[...a]:b,j-a.pop()?b:a.slice(0,x-1)+[,O]].map(a=>M=M[(s=`(${a})`).length]||!M?s:M)&&M

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


複製されたの変数を作成することにより、305バイト(-2)'others=>'
Kevin Cruijssen、

@KevinCruijssenありがとう!(注:ごt使用のバージョンでは、それが定義される前に使用されます。クラッシュしない理由は、最初の2つのテストケースではまったく使用されないためです。ただし、コストをかけずに簡単に修正できます。)
Arnauld

ああ。何がどこで使用されたかを確認するために、私はあなたの答えを実際に解き明かしませんでした。私は単にあなたが'others'2回持っていることに気づき、出力を変更せずにそのための変数を作成しようとしました。;)それを説明していただきありがとうございます[,O]。:)
Kevin Cruijssen

2

05AB1E136の 134 132 バイト

"',ý'(ì')«ˆ"©.V"θ…ˆ†=>쪮.V"Uγ¨D€gPi˜IX.V}\ÙεQƶ0KDāαγ€g£}D2Fε¾iεнyg≠iyθyg<i'|ë„..}ý}}ë˜}'|ý„=>«Iyнн<è«}Ю.VgFDN._ć'>¡X.V}\¼}¯éIgi¦}н

編集:すべてのテストケースで修正されました。

オンラインそれを試してみたり、すべてのテストケースを検証する(それはあまりにも大きいですから、「巨大な入力」1を除きます)。

説明:

"',ý'(ì')«ˆ"       # Push this string (function 1), which does:
 ',ý              '#  Join a list by ","
    '(ì           '#  Prepend a "("
       ')«        '#  Append a ")"
          ˆ        #  Pop and add it to the global array
            ©      # Store this string in the register (without popping)
             .V    # And execute it as 05AB1E code on the (implicit) input-list
"θ…ˆ†=>쪮.V"      # Push this string (function 2), which does:
 θ                 #  Pop and push the last element of the list
  …ˆ†=>ì           #  Prepend dictionary string "others=>"
        ª          #  Append that to the list which is at the top of the stack
         ®.V       #  And execute function 1 from the register     
             U     # Pop and store this string in variable `X`
γ                  # Get the chunks of equal elements in the (implicit) input-list
 ¨                 # Remove the last chunk
  D                # Duplicate the list of remaining chunks
   g              # Get the length of each
     Pi     }      # If all chunk-lengths are 1:
       ˜           #  Flatten the list of remaining chunks
        I          #  Push the input-list
         X.V       #  Execute function 2 from variable `X`
             \     # Discard the top of the stack (in case we didn't enter the if-statement)
Ù                  # Uniquify the (implicit) input-list
 ε                 # Map each unique value `y` to:
  Q                #  Check for each value in the (implicit) input-list if it's equal to `y`
                   #  (1 if truthy; 0 if falsey)
   ƶ               #  Multiply each by its 1-based index
    0K             #  Remove all 0s
      D            #  Duplicate it
       ā           #  Push a list [1, length] without popping the list itself
        α          #  Get the absolute difference at the same indices
         γ         #  Split it into chunks of the same values
          g       #  Get the length of each
            £      #  And split the duplicated indices-list into those parts
                   # (this map basically groups 1-based indices per value.
                   #  i.e. input [1,1,2,1,1,2,2,1,1] becomes [[[1,2],[4,5],[8,9]],[[3],[6,7]]])
 }D                # After the map: duplicate the mapped 3D list
   2F              # Loop 2 times:
     ε             #  Map the 3D list of indices to:
      ¾i           #   If the counter_variable is 1:
        ε          #    Map each list `y` in the 2D inner list to:
         н         #     Leave the first value
         ygi      #     And if there is more than one index:
             yθ    #      Push the last value as well
             yg<i  #      If there are exactly two indices:
              '|  '#       Push string "|"
             ë     #      Else (there are more than two indices)
              „..  #       Push string ".."
                 #      And join the first and last value by this string
        }}         #    Close the if-statement and map
      ë            #   Else:
       ˜           #    Flatten the 2D list
      }'|ý        '#   After the if-else: join by "|"
          „=>«     #   Append "=>"
       yнн         #   Get the very first index of this 2D list
          <        #   Decrease it by 1 to make it 0-based
      I    è       #   And index it into the input-list to get its value again
            «      #   Which is also appended after the "=>"
                 #  After the map: triplicate the result
       ®.V         #  Execute function 1 from the register
       g           #  Get the amount of items in the triplicated list
        F          #  Loop that many times:
         D         #   Duplicate the list
          N._      #   Rotate it the index amount of times
          ć        #   Extract the head; pop and push remainder and head
           '>¡    '#   Split this head by ">"
              X.V  #   And then function 2 is executed again from variable `X`
        }\         #  After the loop: discard the list that is still on the stack
          ¼        #  And increase the counter_variable by 1
                 # After looping twice: push the global array
     é             # Sort it by length
      Igi }        # If the input only contained a single item:
         ¦         #  Remove the very first item
           н       # And then only leave the first item
                   # (which is output implicitly as result)

この05AB1E鉱山の先端を参照してください(セクション圧縮文字列の辞書の一部ではないにどのように?理由を理解すること…ˆ†=>です"others=>"

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