得分Yahtzee游戏


12

对于Yahtzee计分表的13行中的每行,您都会(从stdin中)获得一个由5个数字(骰子)隔开的列表。您的任务是计算每条线的分数并输出游戏的总计

输入及其解释:

Input       Box              Score
6 1 4 1 3   Aces              2
3 2 2 1 2   Twos              6
6 3 2 3 3   Threes            9
4 2 3 6 5   Fours             4  
6 3 5 5 1   Fives            10
1 5 6 5 6   Sixes            12
            Bonus             -
4 2 4 4 1   3 of a kind      15
2 2 3 2 4   4 of a kind       -
3 2 2 2 3   Full house       25  
1 3 1 6 1   Small straight    -
2 5 4 6 3   Large straight   40
2 2 2 2 2   Yahtzee          50
5 5 4 5 2   Chance           21
            Grand Total     194

我们将不理会Yahtzee Bonus和Joker规则,仅将上半部分和下半部分以及上半部分的奖金相加。如有疑问,请参考这些规则

愿最短的代码获胜!


为了那些不讲挪威语的人的利益,您能列出您希望人们直接在问题中实施的评分规则吗?
彼得·泰勒

嘿嘿;)规则是一样的,只是一些位置改变了的方块,加上了一对1和2。第一个代码块是粗略翻译(没有“ Sum”和“ Bonus”),因此请参考该代码块。挪威语链接只是为可能习惯于其他设置的人们证明块的顺序。我认为规则很明确,并且“ pair”块很容易解释。我提供的英文Wiki链接上应解释其余规则。
daniero 2012年

哦,我才意识到,规则不同的。然后,我将使用官方的“国际”规则:yahtzeerules.com/yahtzee-scoring.htm(我更喜欢挪威的规则,可能的分数会有更多变化)-我将在稍后更改这个问题。
daniero 2012年

您实际上是要将输入卡与计分线匹配?我们是否应该找出哪条线最适合任何给定的牌?
DavidC 2012年

1
@Matt在浏览了某个搜索引擎的一些顶级结果之后,我会说“是”。
daniero 2012年

Answers:


4

APL(124)

S←{⍺∊+⌿⍵∘.=⍵}⋄+/(+/⎕)(50×∧/,A∘.=A←⎕)(+/10×{⍵×∨/(⍳⍵)⍷1+A-⊃A←A[⍋A←⎕]}¨N)(25×∧/S∘⎕¨2 3)(+/{(+/A)×⍵S⊢A←⎕}¨N←3 4)(+/{+/⍵×⍵=⎕}¨⍳6)

4
我发誓这看起来和我在外星飞船那边读到的东西一样。
凯文·埃利奥特

我不知道该程序是否有效,但是肯定是最短的:D
daniero 2012年

5

R-264

S=sum;
P=prod;
T=function(i)table(x[i,]);
Z=function(i,...)any(sapply(list(...),function(y)all(y%in%x[i,])))
S((x[1:6,]==(R=row(x[1:6,])))*R)+ # Upper section
S(x[7,])*any(T(7)>2)+             # 3 of a kind
S(x[8,])*any(T(8)>3)+             # 4 of a kind
25*(P(T(9))%in%5:6)+              # Full house
30*Z(10,1:4,2:5,3:6)+             # Small straight
40*Z(11,1:5,2:6)+                 # Large straight
50*(P(T(12))==5)+                 # Yahtzee
S(x[13,])                         # Chance

(不包括注释时为264个字符)

用输入

x <- as.matrix(read.table("http://pastebin.com/raw.php?i=ZRMC9B4x"))

输出量

[1] 194

很高兴看到有人设法获得正确的输出:D我将更新示例。
daniero 2012年

我认为您的程序无法正确处理满员情况。我测试了骰子2 2 2 2 2,我相信您的程序会将其视为满员,并奖励25分。
马特

我认为大和小笔直也有问题。如果所有骰子都相同(我再次测试2 2 2 2 2),我得到的是结果numeric(0)而不是分数。
马特

@Matt,我来自哪里(我的规则还是每个人的规则?),您可以2 2 2 2 2在“ Full house”下得分yahtzee(例如)。我想你对直道是正确的,谢谢。我将使用我想到的较短版本更新代码。
flodel 2012年

4

Python 364

S=sum;R=range;D=[map(int,raw_input().split())for i in R(13)];s=S(x for i in R(6)for x in D[i]if x==i+1)
for i in R(2):d=D[6+i];s+=[0,S(d)][max(map(d.count,d))>2+i];d=sorted(set(D[9+i]));s+=[0,30+i*10]['1, 1, 1'+', 1'*i in`[d[x+1]-d[x]for x in R(len(d)-1)]`]
e=D[8];a=map(e.count,e);d=D[11];print s+S(D[12])+[0,50][d.count(d[0])==5]+[0,25][2in a and 3in a or 5in a]

根据要求,在stdin上输入:

$ yScore.py < dice.txt
194

如果可以像其他解决方案一样将数据预加载到列表中,则可以删除62个字符以获取302。


3

Mathematica 359

y = IntegerDigits@ImportString[x, "Table"][[1]];
l = Length; g = Gather; r = Range; b = SortBy; h = l@b[g[y[[#]]], l][[-1]] &;
Tr@Flatten@{# Count[y[[#]], #] & /@ r@6, If[h@7 == 3, 15, 0], 
If[h@8 == 4, 20, 0], If[(l /@ b[g[y[[9]]], l]) == {2, 3}, 25, 0], 
If[MatchQ[Sort@y[[10]], {___, n_, m_, o_, q_, ___} /; m == n + 1 && o == m + 1 && q == o + 1], 30, 0], 
If[Sort[y[[11]]] == r[y[[11, 1]], y[[11, 1]] + 4], 40, 0], 
If[l@g[y[[12]]] == 1, 50, 0], y[[13]]}

必须有一种更有效的方法来检查空头顺子。


1

高尔夫脚本180

n/{~]}%6,{)`['{''=},,''*']*}%[{.{+}*\{..|{'{'\'=},,'++1$\~}%$\;}:g~)\;2>*}{.{+}*\g)\;3>*}{g[2 3]=25*}{$:§;3,{).4+,\>§-}%1?)!!30*}{.$(\;.5+,\>\-!40*}{g)\;5=50*}{{+}*}]+]zip{~~}%{+}*

您可以在这里测试程序

带注释的程序:

n/                          # split input by newline
{~]}%                       # parse an int array from each line

6,{)`['{''=},,''*']*}%      # create {X=},,X* code blocks, 
                            # where X goes from 1 to 6 
                            # (needed for processing the first 
                            # half of the board)

[       # create an array of code blocks, for scoring:

        # three of a kind:
    {.{+}*\{..|{'{'\'=},,'++1$\~}%$\;}:g~)\;2>*}

        # four of a kind:
    {.{+}*\g)\;3>*}

        # full house:
    {g[2 3]=25*}

        # small straight:
    {$:§;3,{).4+,\>§-!}%1?)!!30*}

        # straight: 
    {.$(\;.5+,\>\-!40*}

        # yahtzee:
    {g)\;5=50*}

        #chance:
    {{+}*}
]+              # concatenate the 1-6 code block array with this one

]zip            # distribute each line in the input 
                # to the corresponding scoring rule (code block)

{~~}%           # evaluate each input/code pair
                # and get an array with score for each hand

{+}*            # sum up the partial scores.

1

Perl 527个字符

while(<>){$l++;$q=$c=0;$q=1if(($_=~/1/&&$_=~/2/&&$_=~/3/&&$_=~/4/)||($_=~/5/&&$_=~/2/&&$_=~/3/&&$_=~/4/)||($_=~/5/&&$_=~/6/&&$_=~/3/&&$_=~/4/));@a=split//;for(@a){$c++if/$l/;}$s+=$l*($c)if$l<7;$s+=35if$s>=63&&$l==6;for$i(1...6){$t=0;$f+=$c if($l==9&&($c==2||$c==3));$c=0if!($l==11&&$c>1);for(@a){$t+=$_;$c++if/$i/;}$s+=$t if($c>=3&&$l==7);$s+=$t if($c>=4&&$l==8);$s+=50if($c==5&&$l==12);$s+=$t if($l==13&&$i==6);}$s+=25if($f==5&&$l==9);$s+=30if($q==1&&$l==10);$s+=40if($c<2&&($t==15||$t==20)&&$l==11);exit(print $s)if($l==13);}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.