ハートのハンドを獲得する


22

ハーツは、4人のプレーヤーのためのトリックを取るカードゲームです。各トリックは、リーディングスーツの最高のカードをプレイしたプレーヤーによって行われます。各ハンドの終わりに、プレーヤーは自分が取ったペナルティカードに応じてペナルティスコアを負います。タスクは、Microsoft Heartsルールの下でスコアを決定することです。

入力

入力は、4人のプレーヤーのそれぞれが取ったペナルティカードを示す4つのリスト(または区切り文字列、配列など)です。ペナルティカードは

2♥, 3♥, 4♥, 5♥, 6♥, 7♥, 8♥, 9♥, 10♥, J♥, Q♥, K♥, A♥, Q♠

私たちは

2,  3,  4,   5,  6,  7,  8,  9,  10,  11, 12,  13,  1,  0

それぞれ。

出力

出力は、4人のプレーヤー(リスト、文字列、配列など)が被った4つのペナルティポイントです。スコアリングは次のとおりです。

  • 各ハート(、両端113含む整数で表される)には1ポイントが発生します
  • スペードの女王(Q♠、で表される0)には13ポイントがかかります
  • 例外:プレーヤーがすべてのペナルティカードを獲得した場合(月の射撃と呼ばれる)、彼は0ポイントを被り、他のすべてのプレーヤーは26ポイントを被ります。

テストケース

[2, 8, 7, 1], [3, 4], [], [9, 5, 6, 0, 10, 11, 12, 13]     -->  4,  2,  0, 20
[0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [], [], [1]   --> 25,  0,  0,  1
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0], [], [], [] -->  0, 26, 26, 26

バイト単位の最短コードが優先されます。

回答:


3

CJam、22 20バイト

2バイトを節約してくれたjimmy23013に感謝します。

{{XD?}f%1fb_26&1bf^}

名前のないブロック(関数)。入力として4つのリストのリストを取り、スコアのリストを返します。

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

説明

{      e# For each card...
  XD?  e#   Choose 1 if it's positive and 13 if it's zero.
}f%
1fb    e# Sum each hand.
_26&   e# Get the set intersection of the scores with 26. This gives [26]
       e# if someone shot the moon, and [] otherwise.
1b     e# Treat as base-1 digits, which gives 26 if someone shot the moon
       e# and zero otherwise.
f^     e# XOR each result with this number. This swaps zeros and 26s when 
       e# someone shot the moon and does nothing otherwise.

_26&1b。-2バイト。
jimmy23013

@ jimmy23013えーえ、1b...私は回すために短い方法を見つけるためにしようとしていた[26]26して[]0何とか私には発生しなかったことを。ありがとう:)
マーティンエンダー

8

R、85 77 74バイト

function(x,z=sapply(x,function(x)sum(x>0)+any(x<1)*13))abs(z-any(z>25)*26)

入力としてRリストを使用する名前のない関数。要素の数を数えることによって機能し、>0各ベクトル内の要素が<1(つまりスペードの女王)である場合は13を追加し、として保存しzます。

の要素がの場合、return 、そうでない場合zはreturn 。>2526-zz

Rフィドルで試してみてください


1
だろう26-z動作しますか?
u54112

@lastresortはい、もちろん。/手のひらを顔に当てる
Billywob

4

C ++ 14、158バイト

名前のないラムダとして:

[](auto c){typename decltype(c)::value_type r;int b=0;for(auto d:c){int q=0;for(auto i:d)q+=i?1:13;r.push_back(q);b+=q==26;}if(b)for(int&x:r)x=26-x;return r;}

必要vector<vector<int>>とリターンvector<int>

ゴルフをしていない:

[](auto c){
 typename decltype(c)::value_type r;   //result vector
 int b=0;                              //flag if one has all cards
 for(auto d:c){                        //over all decks
  int q=0;                             //count points
  for(auto i:d) q+=i?1:13;             //+13 for queen, +1 else
  r.push_back(q);                      //add to result
  b+=q==26;                            //possibly activate flag
 }
 if(b) for(int&x:r) x=26-x;            //if flag is set, mirror the results
 return r;
}

いくつかのテストケース:

 auto r = std::vector<std::vector<int>>{{2,8,7,1},{3,4},{},{9,5,6,0,10,11,12,13}};
 auto s = std::vector<std::vector<int>>{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0},{},{},{}};
 auto t = std::vector<std::vector<int>>{{},{2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0},{},{1}};

4

Python 2、75 72 71バイト

i=[len(a)+12*(0in a)for a in input()]
print[[x,26-x][26in i]for x in i]

入力を受け取ります [2, 8, 7, 1], [3, 4], [], [9, 5, 6, 0, 10, 11, 12, 13]


[0,12] [0in a]の代わりに12 * [0in a]を使用して3文字を保存できますか?
コスタンティーノ

@Costantinoあなたが意味すると思います12*(0in a)
mbomb007

print[[x,26-x][26in i]for x in i]1バイト短くなります。
mathmandan

3

PHP、113バイト

function h($a){foreach($a as&$b)$b=count($b)+12*in_array(0,$b);if(max($a)>25)foreach($a as&$n)$n=26-$n;return$a;}

関数は配列の配列を取り、値の配列を返します。


PHPでの他の配列マッピングに驚嘆してください:参照された項目を持つループ。より短いですarray_map


3

Haskell、62 59 56バイト

f x|all(<26)x=x|0<1=map(26-)x
f.map(sum.map((13^).(0^)))

使用法:

> f.map(sum.map((13^).(0^))) $ [[0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [], [], [1]]
[25,0,0,1]

fとして書くことができると思いますf n=13^0^n
xnor

@xnorあなたは正しいと思う。3バイト節約します。
アンス

f x|all(<26)x=x|0<1=map(26-)xラムダ関数の代わりに定義して使用すると、いくつかのバイトを節約できると思います。
ズガーブ

@Zgarbそうですね、もう3バイトです。
アンス

2

05AB1E26 22 21バイト

末尾の空白は、配列として解釈されるように入力から削除する必要があります。エンディングは、プレーヤーがすべてのペナルティカードを集めたときに(26-x)を使用したときの他の答えに触発されました。

vy0å12*yg+})D26©åi(®+

v                    For each array
 y                   Push array on the stack
  0å                 Generate a boolean array indicating whether the queen of spades is at the same index in the original array
    12*              Multiply by 12 the value of the queen of spades
       yg+           Add the length of the array; the queen of spades gets her last point from this part
          }          End for
           )         Push an array of all evaluated scores
            D26©å    1 if there is a 26, 0 otherwise
                 i   If there is a 26
                  (®+ Mirror the array: for each element yield 26-element
                      Implicit end if
                      Implicitly print the score array

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

定数と条件ステートメントが重複しているので、まだかなりゴルフができそうです。

旧バージョン、26バイト

(最大ペナルティ値の各ポイントに1バイト)

私の意見では、その長さがこの課題に最も合っているので、それを維持することにしました:)。

vyD0å12*sg+})D26©QDOi_®*ë\

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


2

Python 3、101バイト

def s(a):r=[sum([(1,13)[c==0]for c in h])for h in a];s=(r,[(26,0)[s==26]for s in r]);return s[26in r]

完全なコード:

def score(hands):
    result = [sum([(1, 13)[card == 0] for card in hand]) for hand in hands]
    results = (result, [(26, 0)[score == 26] for score in result])
    return results[26 in result]

12*(c<1)+1は、よりも2バイト短くなってい(1,13)[c==0]ます。26*(s>25)は、よりも3バイト短くなってい(26,0)[s==26]ます。
メゴ

2

JavaScript(ES6)、82 80 77 72 70 69 67バイト

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

f = 
s=>s.map(c=>c.map(t=>r+=t?1:13,r=0)|(b|=r>25,r),b=0).map(c=>b*26^c)

console.log(f.toString().length)
console.log(f([[2, 8, 7, 1], [3, 4], [], [9, 5, 6, 0, 10, 11, 12, 13]]));
console.log(f([[0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [], [], [1] ]));
console.log(f([[0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [], [1], [] ]));
console.log(f([[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0], [], [], []]));
console.log(f([[],[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0], [], []]));

壊す

s=>s.map(                              // for each hand
 c=>c.map(                             // for each card
  t=>r+=t?1:13,                        // add value of card
 r=0)|(
  b=b|r>25,r                           // set flag if any hand scores 26 points
 ),
 b=0)
.map(c=>b?                             // for every card if a hand scored 26
  c?0:26                               // set every 0 hand to 26 and the 26 hand to 0
:c)                                    // otherwise do nothing

c=>b*26^c2バイト節約します。
ニール

1

ピップ、28バイト

27バイトのコード、-pフラグの場合は+1 。

Y{$+1+12*!*a}M Va26Ny?26-yy

コマンドラインの入力を、ネストされたリストを表す文字列として受け取ります"[[2 8 7 1] [3 4] [] [9 5 6 0 10 11 12 13]]"(TIOでは引用符は不要です)。オンラインでお試しください!


1

ルビー、59バイト

->a{a.map{|h|a.max.size>13?h.min||26:h.size+12*h.count(0)}}

または、代わりに、

->a{a.map{|h|a.count([])>2?h.min||26:h.size+12*h.count(0)}}

片手だけですべてのカードを持っている場合、我々は呼び出すことで、私はこれを行う0の値を取得するために26の値、およびカードと手を得るために、空の手をしたいmin、このリターンを-手にnil、空の配列のために、とI ||それ以外の場合には26に、私は手でカードの数をカウントして、スペードの女王に12を追加します。


0

Scala、93バイト

a=>{val% =a.map(_.map{case 0=>13;case _=>1}sum)
if(%toSet 26)%map{case 0=>26;case _=>0}else%}

使用法:

val f:(Seq[Seq[Int]]=>Seq[Int])=...
f(Seq(Seq(2, 8, 7, 1), Seq(3, 4), Seq(), Seq(9, 5, 6, 0, 10, 11, 12, 13)))

説明:

a=>{           //define an anonymou function with a parameter a
  val% =         //define % as...
    a.map(         //map each element of a...
      _.map{         //to each of the card
        case 0=>13     //replaced with its value
        case _=>1
      }
      sum            //and the sum of the values
    )
  if(            //if
    %toSet 26      //one player has all cards
  )
    %map{          //return % with...
      case 0=>26     //each 0 replaced with 26
      case _=>0      //and everything else (aka the 26) replaced 0
    }
  else           //else
    %              //return %
}

私が使用できる%toSet 26代わりの% contains 26ためSetapply方法があるcontainsとget-で、インデックスではないようSeqさん

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