メルキーを遊ぼう!


33

メルキー

Mölkkyはフィンランドの投げゲームです。プレーヤーは木製ピン(「メルキー」とも呼ばれます)を使用して、1〜12の数字でマークされたスローイングピンとほぼ同じ寸法の木製ピンを倒します。ピンの初期位置は次のとおりです。

   (07)(09)(08)
 (05)(11)(12)(06)
   (03)(10)(04)
     (01)(02)

この説明と以下のルールはウィキペディアに基づいています。

簡略化されたMölkkyルール

  1. 1本のピンをノックすると、ピンにマークされたポイントの数が決まります。

  2. ノッキング2つの以上のピンのピンの数は上ノックスコア(例えば、3つのピンスコア3点にわたってノッキング)。

  3. ゲームの目的は、正確に50ポイントに到達することです。スコアを25ポイントに戻すと、50を超えるスコアがペナルティになります。

  4. この課題のために、ピンは常に上記の正確な順序であると仮定します。(実際のゲームでは、ピンは着地した場所に投げるたびに再び立ち上がります。)

他のすべてのMölkkyルールは無視され、1人のプレーヤーのみが考慮されます。

入力

12個のブール値のリストの空でないリスト。ブール値の各リストは、スローの結果を表します。ピンがノックオーバーされた場合は1、そうでない場合は0です。:ブール値は、左上から右下へのピンの正確な順序で与えられている798511126310412

出力

すべての後のスコアは、ルールを適用して算出、入力に記載のスロー12及び3

詳細な例

次の入力を考えてみましょう。

// 07 09 08 05 11 12 06 03 10 04 01 02
[ [ 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 ],  // scores 5 (rule #1)
  [ 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 ],  // scores 2 (rule #2), total: 7
  [ 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ],  // scores 7, total: 14
  [ 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 ],  // scores 12, total: 26
  [ 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 ],  // scores 12, total: 38
  [ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 ],  // scores 11, total: 49
  [ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ],  // scores 7, total: 56 -> 25 (rule #3)
  [ 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ] ] // scores 2, total: 27

予想される出力は27です。

チャレンジルール

  • 妥当な形式で入力できます。ブール値のリストの代わりに、最上位ビットがピン#7で、最下位ビットがピン#2である整数を使用できます。この形式では、上記の例はとして渡され[ 256, 2304, 127, 64, 64, 128, 2048, 3072 ]ます。
  • 入力リストには、ピンがまったくノックオーバーされないスローが含まれる場合があります。その場合、スコアは変更されません。
  • スコアが正確に 50ポイントに達したときに特別なことはありません。しかし、それが起こった場合、他のスローは続かないと仮定できます。
  • これはであるため、バイト単位の最短回答が優先されます。

テストケース

入力として整数のリストを使用する:

[ 0 ] --> 0
[ 528 ] --> 2
[ 4095 ] --> 12
[ 64, 0, 3208 ] --> 16
[ 16, 1907, 2048 ] --> 18
[ 2023, 2010, 1, 8 ] --> 29
[ 1726, 128, 35, 3136, 1024 ] --> 34
[ 32, 32, 2924, 2, 256, 16 ] --> 28
[ 64, 64, 2434, 1904, 3251, 32, 256 ] --> 25
[ 3659, 2777, 2211, 3957, 64, 2208, 492, 2815 ] --> 25
[ 2047, 1402, 2, 2599, 4, 1024, 2048, 3266 ] --> 50
[ 256, 2304, 127, 64, 64, 128, 2048, 3072 ] --> 27
[ 16, 8, 128, 1, 2048, 1, 2048, 513, 8, 3206 ] --> 30

このリンクたどって、これらのテストケースをブール形式で取得できます。


5
クールな挑戦、そしてそれを試していない人のための夏にプレイする素晴らしいゲーム-グリルと一緒に素晴らしい作品。
NIT

2
@Nitありがとう。:)私は今日までこのゲームを知らなかったことを告白しなければなりません。今日の午後、公園を歩いているときに人々がそれを演奏しているのを見ました。今、私はそれを試してみたいと思います。
アーナウルド

回答:


7

パイソン2126の111 108 104バイト

ジョナサン・アランのおかげで-3バイト

カヤのおかげで-4バイト!

f=lambda A,t=0:t>50and f(A,25)or A and f(A[1:],t-~(sum(A[0])-1or 762447093078/12**A[0].index(1)%12))or t

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

1と0の2D配列を取り、整数値を返す再帰関数を定義します。構造に特別なものはありません。より簡単な解決策があると確信しています。

説明:

f=lambda A,t=0:    #Define the function, initialising t to 0 on the first iteration
               t>50and f(A,25)      #If t>50 then iterate again with t=25
                              or    #Else
               A and                #If A exists
                     f(A[1:],       #Iterate again without the first list of A
                        t-~         #And add to t, either
                           (sum(A[0])-1   #The sum of all elements if that's not 1
                                         or
                           762447093078/12**A[0].index(1)%12   #Else the appropriate pin value (black magic!)
               or t       #Finally, if A is finished, just return t

(0x103925BA4786>>4*A[0].index(1))%16対1キャラクターの節約ord('GIHEKLFCJDAB'[A[0].index(1)])-65
カヤ

1
もう少し最適:762447093078/12**A[0].index(1)%12
カヤ

それは私にとって黒魔術のようです!ありがとう@カヤ!
ジョーキング

1
ちょうどベース12でエンコードするということ
enedil

6

ゼリー、25 バイト

“ñ€bḷ’œ?TLḢṖ?µ€+25¹>?50ɗ/

整数を返す1と0(それぞれ長さ12)のリストのリストを受け入れるモナドリンク。

オンラインでお試しください!または、テストスイートを参照してください(OPで指定された整数値を使用)

どうやって?

このソリューションは、を使用します。これは、œ?番号nを指定し、リストはソート順を定義するリストのn 番目の辞書式順列を見つけます。最初にこれを解決する必要がありますn

 index:  1  2  3  4  5  6  7  8  9 10 11 12
 value:  7  9  8  5 11 12  6  3 10  4  1  2   (as defined by the question)
     P: 11 12  8 10  4  7  1  3  2  9  5  6   (our permutation lookup array)

...つまり、Pat index iはvalueの元のインデックスに設定されますi
これにPは、438,337,469の辞書式索引があります(つまり、1から12までの数字の順列を12個すべて取り、辞書式にソートした場合、438,337,469 番目はになります)。 これは、Jelly's atom を使用して見つけることができます。Jellyプログラムを使用すると、 両方のステップを一度に実行できます。P
Œ¿
ĠŒ¿

“ñ€bḷ’œ?TLḢṖ?µ€+25¹>?50ɗ/ - Link: list of lists of zeros and ones
             µ€           - perform the monadic chain to the left for €ach list:
“ñ€bḷ’                    -   base 250 number = 438337469
      œ?                  -   nth permutation (reorder the 1s and 0s to their pin values)
        T                 -   truthy indices (get the pin values of the 1s)
            ?             -   if...
           Ṗ              -   ...condition: pop (length greater than 1 ?)
         L                -   ...then: length (the number of pins)
          Ḣ               -   ...else: head (the first (& only) pin value)
                        / - reduce the resulting list of integers with:
                       ɗ  -   last three links as a dyad:
               +          -     addition (add the two values together)
                     50   -     literal fifty
                    ?     -     if...
                   >      -     ...condition: greater than (sum greater than 50 ?)
                25        -     ...then: literal twenty-five
                  ¹       -     ...else: identity (do nothing - just yield the sum)

すべての順列から適切な辞書式索引を見つけることについてのあなたの説明は、ゼリーのヒントとして追加する価値があると思います。(私はそれをしなければならなかった最後の時間、私はできません手動二分検索、やったその短い配列のために長いけど...ちょっと退屈を^^。)
アルノー

笑; 私が持っていた正確に二つの異なるバイトを除いて、同じ溶液を:- > µ- > Ʋ。Jellyは、プログラムの最初の段階で特別なケースの動作を維持する場合を除き、ニラディックリンクを¡<link>(最初の引数)として受け入れることで本当に恩恵を受けるでしょう。
エリックアウトゴルファー

...そして、私はほとんど両方を使用しました!
ジョナサンアラン


4

Pyth、51 48 38バイト

VQI>=+Z?qJsN1@.PC"îO&"S12xN1J50=Z25;Z

ジョナサンアランのおかげで10バイトを節約できました入力をブール値のリストとして受け取ります。
ここで試してみてください

説明

VQI>=+Z?qJsN1@.PC"îO&"S12xN1J50=Z25;Z
VQ                                  ;     For each input...
    =+Z                                   ... add to the total...
       ?q sN1                             ... if one pin is down...
             @.PC"îO&"S12xN1              ... the score of that pin.
         J                    J           ... otherwise, the count.
  I>                           50         If we pass 50...
                                 =Z25     ... reset to 25.
                                     Z    Output the total.

わからないどのように正確にプログラムにそれを得るために、しかし、あなたができれば、それは6つのまたは7バイトを保存する必要があります... 7tT8h4hT12h5h2T4h02- > .PC"îO&"S12-私のゼリーの答えのような辞書式順列インデックスを使用しています。(コードには、文字列の先頭に0x0Fの印刷不能バイトがあります。)
ジョナサンアラン

))することができます;
ジョナサンアラン

4

05AB1E29 28バイト

v•CÞŸαLć•13вyOΘmyÏOO25‚¬50›è

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

説明

v                              # for each boolean list in input
 •CÞŸαLć•                      # push 13875514324986
         13в                   # convert to a list of base-13 numbers
            yO                 # push the sum of y
              Θm               # truthify and raise the pin-list to this number (0 or 1)
                yÏ             # keep those which are true in the current list
                  OO           # sum the list and the stack
                    25‚        # pair with 25
                       ¬50›    # check if the first number is larger than 50
                           è   # index into the pair with this result


3

Haskell、96バイト

foldl(\s a->([s..50]++e)!!sum(last$zipWith(*)[7,9,8,5,11,12,6,3,10,4,1,2]a:[a|sum a>1]))0
e=25:e

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

ラッピングは賢明です:私は本質的s+sum(…)にリストの位置にインデックスを付けます([0..50]++cycle[25])。ただし、それを記述するより短い方法は、位置sum(…)でインデックスを作成し、リストをで開始することsです。


3

Java 10、131 130 129バイト

m->{int r=0,i,s,t;for(var a:m){for(i=s=t=0;i<12;s+=a[i++])t=a[i]>0?"    \n".charAt(i):t;r+=s<2?t:s;r=r>50?25:r;}return r;}

10個の印刷できないものが含まれています。
ゼロと1の整数行列として入力します。

@JonathanFrechのおかげで\t、実際のタブに変更された-1バイト(TIOで機能しますが、ローカルIDEでは機能しません)。

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

説明:

m->{                // Method with integer-matrix parameter and integer return-type
  int r=0,          //  Result-integer, starting at 0
      i,s,t;        //  Temp integers
  for(var a:m){     //  Loop over the integer-arrays of the input
    for(i=s=t=0;    //   Reset `i`, `s` and `t` to 0
        i<12;       //   Loop `i` in the range [0,12)
        s+=a[i++])  //    Increase `s` by the current value (0 or 1)
      t=a[i]>0?     //    If the current value is 1:
         "  \n".charAt(i)
                    //     Set `t` to the score at this position
        :t;         //    Else: Leave `t` the same
    r+=s<2?         //   If only a single pin was hit:
        t           //    Add its score `t` to the result
       :            //   Else:
        s;          //    Add the amount of pins `s` to the result
    r=r>50?         //   If the result is now above 50
       25           //    Penalize it back to 25
      :r;}          //   If not, it stays the same
  return r;}        //  Return the result

で実際のタブ文字を使用すると、1バイト節約できると思います"\t\n"
ジョナサンフレッチ

@JonathanFrechうーん、確かにTIOで動作するようです。..私のIDE内でローカルに動作しますが、誰が、私は推測することを気にしません。)
ケビンCruijssen

動作する実装がどこかにある場合、許可されます。:@
ジョナサンフレッチ

2

、43バイト

≔⁰ηFθ«≧⁺⎇⊖ΣιΣι⌕᧔$|#z⁸Ug⊗”⌕ι¹η¿›η⁵⁰≔²⁵η»Iη

オンラインでお試しください!リンクは、コードの詳細バージョンです。入力をブール配列として受け取ります。説明:

≔⁰η

スコアを0に設定します。

Fθ«

スローをループします。

⎇⊖Σι

ピンの数は1ですか?

Σι

そうでない場合は、ピンの数を取ります。

⌕᧔$|#z⁸Ug⊗”⌕ι¹

それ以外の場合は、ピンの位置を値に変換します。

≧⁺...η

スコアに追加します。

¿›η⁵⁰≔²⁵η

スコアが50を超える場合は、25に戻します。

»Iη

すべてのスローの後、最終結果を印刷します。



2

ハスク47 35バイト

H.PWiz(リストエンコーディングポイントを生成するより良い方法)のおかげで-12バイト!

F₅0
S?25>50+?←Lε`f`+Nm+3d4652893071

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

説明

F₅0  -- input is a list of boolean lists
F    -- left fold by
 ₅   -- | the function flipped (overflowing label) on line 1
  0  -- | with initial value 0

S?25>50+?←Lε`f`+Nm+3d4652893071  -- example inputs: [0,0,0,1,0,0,0,0,0,0,0,0] 0
                     4652893071  -- integer literal: 4652893071
                    d            -- digits: [4,6,5,2,8,9,3,0,7,1]
                 m+3             -- map (+3): [7,9,8,5,11,12,6,3,10,4]
              `+N                -- append natural numbers: [7,9,8,5,11,12,6,3,10,4,1,2,3,...
            `f                   -- filter this list by argument: [5]
        ?  ε                     -- if it's of length 1
         ←                       -- | take first
          L                      -- | else the length
                                 -- : 5
       +                         -- add to argument: 5
 ?  >50                          -- if the value is > 50
  25                             -- | then 25
S                                -- | else the value
                                 -- : 5

どうm+3d4652893071
H.PWiz

1

189 172バイト

func[b][s: 0 foreach c b[d: 0 foreach e c[if e = 1[d: d + 1]]i: find c 1
n: either i[pick[7 9 8 5 11 12 6 3 10 4 1 2]index? i][0]if 50 < s: s + either 1 < d[d][n][s: 25]]s]

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

改変されていないコードの説明:

f: func[b][                                            ; a block of blocks of booleans
    s: 0                                               ; sets sum to 0
    foreach c b[                                       ; for each row of booleans 
        d: 0 foreach e c[if e = 1[d: d + 1]            ; count the number of 1s         
        i: find c 1                                    ; the index of the first 1
        n: either i[pick [7 9 8 5 11 12 6 3 10 4 1 2]  ; if there is 1, pick the number
                    index? i][0]                       ; at the index of 1
                                                       ; otherwise 0  
        if 50 < s: s + either 1 < d[d][n][s: 25]       ; if there is only one 1, add 
                                                       ; the number to the sum, otherwise
                                                       ; the number of 1s 
                                                       ; if the sum > 50, reset it to 25 
    ]
    s                                                  ; return the sum 
]

1

JavaScript(ES6)、98バイト

a=>a.map(b=>b.map((m,i)=>(c+=m,d+=m*('0x'+'7985bc63a412'[i])),c=d=0)|(t+=c>1?c:d)>50?t=25:0,t=0)|t

テストケース:


私のリファレンス実装と同じサイズ(および非常に似ています)。:)
アーナウルド

ああ、かっこいい。あなたのコードサイズを一致させることができるときはいつでも私は幸せです。それは私がそれを打つことができるのは青い月に一度だけです:)
リックヒッチコック

0

スタックス、37 バイト

├T<↓"♥←~;▌6»≥øF←î5░U╚_π○Q▒<│∟└ù║pε♀▀æ

実行してデバッグする

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

説明

F:1"=EA5MQ9-I1%)"!s@c%1={h+}{%+}?c50>{d25}{}?    # Full program, unpacked

F                                                # Loop through every element
 :1                                              # Get indices of truthy elements
   "=EA5MQ9-I1%)"!                               # Push encoded [7,9,8,5,11,12,6,3,10,4,1,2]
                 s@                              # Swap the top 2 elements of stack and get elements at indexes
                   c%1=                          # Copy the top element, get length of array, compare to length of 1
                       {h+}{%+}?                 # If it has length of 1, add the element, otherwise add the length of the array to total
                                 c50>            # Compare total to 50, 
                                     {d25}{}?    # If it is greater, pop it off and push 25 to reset counter, otherwise do nothing

私の最高の仕事ではありませんが、うまくいきます。私はそれを少し短くするために欠けている何かしらがあると確信しています。


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