Камінь, папір, ножиці, ящірка, спок [закрито]


16

Створіть функцію, яка буде приймати два рядки як вхідні дані та повертати один результат для результату. Найбільш популярна відповідь виграє.

Правила Рок-папір-ножиці-ящірки-Спок:

  • Ножицями вирізати папір
  • Папір покриває скелю
  • Скеля дробить ящірку
  • Ящі ящірки Спок
  • Спок розбиває ножиці
  • Ножиці обезглавляють ящірку
  • Ящірка їсть папір
  • Папір спростовує Спок
  • Спок випаровує гірські породи
  • Скеля ламає ножиці

Вихід для кожного можливого випадку введення:

winner('Scissors', 'Paper') -> 'Scissors cut Paper'
winner('Scissors', 'Rock') -> 'Rock breaks Scissors'
winner('Scissors', 'Spock') -> 'Spock smashes Scissors'
winner('Scissors', 'Lizard') -> 'Scissors decapitate Lizard'
winner('Scissors', 'Scissors') -> 'Scissors tie Scissors'
winner('Paper', 'Rock') -> 'Paper covers Rock'
winner('Paper', 'Spock') -> 'Paper disproves Spock'
winner('Paper', 'Lizard') -> 'Lizard eats Paper'
winner('Paper', 'Scissors') -> 'Scissors cut Paper'
winner('Paper', 'Paper') -> 'Paper ties Paper'
winner('Rock', 'Spock') -> 'Spock vaporizes Rock'
winner('Rock', 'Lizard') -> 'Rock crushes Lizard'
winner('Rock', 'Scissors') -> 'Rock breaks Scissors'
winner('Rock', 'Paper') -> 'Paper covers Rock'
winner('Rock', 'Rock') -> 'Rock ties Rock'
winner('Lizard', 'Rock') -> 'Rock crushes Lizard'
winner('Lizard', 'Spock') -> 'Lizard poisons Spock'
winner('Lizard', 'Scissors') -> 'Scissors decapitate Lizard'
winner('Lizard', 'Paper') -> 'Lizard eats Paper'
winner('Lizard', 'Lizard') -> 'Lizard ties Lizard'
winner('Spock', 'Rock') -> 'Spock vaporizes Rock'
winner('Spock', 'Lizard') -> 'Lizard poisons Spock'
winner('Spock', 'Scissors') -> 'Spock smashes Scissors'
winner('Spock', 'Paper') -> 'Paper disproves Spock'
winner('Spock', 'Spock') -> 'Spock ties Spock'

Додатковий виклик, запропонований @Sean Cheshire: Дозволити користувацькі списки, наприклад, з цього сайту. За допомогою списку n-елементів елемент програє (n-1) / 2 попередньому та перемагає над (n-1) / 2 наступним


7
Створення 25-елементної таблиці пошуку не є проблемою, а популярність - це не виклик коду .
Пітер Тейлор

6
І коли я кажу, що популярність - це не виклик коду : починається пояснення цього тегу . Виклик коду - це змагання за творчі способи вирішення головоломки програмування для об'єктивного критерію, відмінного від розміру коду. "Найпопулярніша відповідь перемагає" не є об'єктивним критерієм: ви не могли дати комусь два відповіді і запитати, який є найпопулярнішим.
Пітер Тейлор

1
@PeterTaylor, dansalmo має рацію, якщо ця таблиця пошуку знаходиться в циклі: це відома теорема Conway: en.wikipedia.org/wiki/FRACTRAN
кабінка

1
@dansalmo Виклик, на який ви посилаєтесь, був створений до існування тегу популярності-конкурсу .
примо

1
Пропозиція додати до виклику - Дозволити спеціальні списки, такі як на цьому веб-сайті, що містять до 101 позиції. Зі списку n-елементів, елемент програє (n-1) / 2 попередньому та перемагає над (n-1) / 2 follwing
SeanC

Відповіді:


13

APL

vs←{
    n←'Scissors' 'Paper' 'Rock' 'Lizard' 'Spock'
    x←n⍳⊂⍺ ⋄ y←n⍳⊂⍵ ⋄ X←⍺ ⋄ Y←⍵ ⋄ r←{X,⍵,⊂Y}
    x=y:     r (-x=0)↓'ties'
    y=5|1+x: r x⌷'cut' 'covers' 'crushes' 'poisons' 'smashes'
    y=5|3+x: r x⌷'decapitate' 'disproves' 'breaks' 'eats' 'vaporizes'
    ⍵∇⍺
}

Виведіть точно так, як потрібно у всіх випадках, включаючи краватку / краватку. Немає таблиці пошуку, крім власне слів.

Ви можете спробувати його на http://ngn.github.io/apl/web/

'Spock' vs 'Paper'
Paper  disproves  Spock

APL просто знає!


+1, досі не помічав APL. Зачаровуючий. Ваша структура також класна. Останній рядок мені найкраще подобається.
dansalmo

@dansalmo Спасибі :) Мені це дуже подобається. І тепер завдяки github.com/ngn/apl у нас є перекладач з відкритим кодом та готовим до Інтернету (десятиліттями були лише комерційні перекладачі)
Tobia

@dansalmo btw, APL - це ідеально підходить для того типу функціонального кодування, який, здається, ви робите в Python (що я також люблю робити)
Tobia

10

СЕД

#!/bin/sed
#expects input as 2 words, eg: scissors paper

s/^.*$/\L&/
s/$/;scissors cut paper covers rock crushes lizard poisons spock smashes scissors decapitates lizard eats paper disproves spock vaporizes rock breaks scissors/
t a
:a
s/^\(\w\+\)\s\+\(\w\+\);.*\1 \(\w\+\) \2.*$/\u\1 \3 \u\2/
s/^\(\w\+\)\s\+\(\w\+\);.*\2 \(\w\+\) \1.*$/\u\2 \3 \u\1/
t b
s/^\(\w\+\)\s\+\1;\(\1\?\(s\?\)\).*$/\u\1 tie\3 \u\1/
:b

1
Це ... дідяльський.
Уейн Конрад

4

Ось загальне рішення, засноване на рядку правил будь-якого розміру. Він виконує правильну написання великої літери для відповідної назви "Спок", а також дозволяє встановити правила "краватка" замість "зв'язки" для множинних об'єктів.

def winner(p1, p2):
    rules = ('scissors cut paper covers rock crushes lizard poisons Spock'
    ' smashes scissors decapitate lizard eats paper disproves Spock vaporizes'
    ' rock breaks scissors tie scissors'.split())

    idxs = sorted(set(i for i, x in enumerate(rules) 
                      if x.lower() in (p1.lower(), p2.lower())))
    idx = [i for i, j in zip(idxs, idxs[1:]) if j-i == 2]
    s=' '.join(rules[idx[0]:idx[0]+3] if idx 
          else (rules[idxs[0]], 'ties', rules[idxs[0]]))
    return s[0].upper()+s[1:]

Результати:

>>> winner('spock', 'paper')
'Paper disproves Spock'
>>> winner('spock', 'lizard')
'Lizard poisons Spock'
>>> winner('Paper', 'lizard')
'Lizard eats paper'
>>> winner('Paper', 'Paper')
'Paper ties paper'
>>> winner('scissors',  'scissors')
'Scissors tie scissors'    

Визначаючи, rulesви можете використовувати багаторядковий рядок замість буквального конкатенації. Це дозволяє видалити зайві дужки.
Бакуріу

3

Пітон

class Participant (object):
    def __str__(self): return str(type(self)).split(".")[-1].split("'")[0]
    def is_a(self, cls): return (type(self) is cls)
    def do(self, method, victim): return "%s %ss %s" % (self, method, victim)

class Rock (Participant):
        def fight(self, opponent):
                return (self.do("break", opponent)  if opponent.is_a(Scissors) else
                        self.do("crushe", opponent) if opponent.is_a(Lizard)   else
                        None)

class Paper (Participant):
        def fight(self, opponent):
                return (self.do("cover", opponent)    if opponent.is_a(Rock)  else
                        self.do("disprove", opponent) if opponent.is_a(Spock) else
                        None)

class Scissors (Participant):
        def fight(self, opponent):
                return (self.do("cut", opponent)       if opponent.is_a(Paper)  else
                        self.do("decaitate", opponent) if opponent.is_a(Lizard) else
                        None)

class Lizard (Participant):
        def fight(self, opponent):
                return (self.do("poison", opponent) if opponent.is_a(Spock) else
                        self.do("eat", opponent)    if opponent.is_a(Paper) else
                        None)

class Spock (Participant):
        def fight(self, opponent):
                return (self.do("vaporize", opponent) if opponent.is_a(Rock)     else
                        self.do("smashe", opponent)    if opponent.is_a(Scissors) else
                        None)

def winner(a, b):
    a,b = ( eval(x+"()") for x in (a,b))
    return a.fight(b) or b.fight(a) or a.do("tie", b)

Ножиці множина, так що «відруби сек » папір і «decaitate сек » ящірка »є неправильним (останній пропускає P теж) А." Спок smashs "має бути" розбиває ";)
daniero

@daniero, спасибі Я помітив проблему ножиць, але її виправлення ускладнює справи. Виправлення "розтрощень" зараз.
угорен

@Daniel "Ножиці" множини. "Ножиці" також є одниною. Дивіться en.wiktionary.org/wiki/scissors
DavidC

Так тонкі. Любіть це.
kaoD

2

Пітон

def winner(p1, p2):
    actors = ['Paper', 'Scissors', 'Spock', 'Lizard', 'Rock']
    verbs = {'RoLi':'crushes', 'RoSc':'breaks', 'LiSp':'poisons',
             'LiPa':'eats', 'SpSc':'smashes', 'SpRo':'vaporizes', 
             'ScPa':'cut', 'ScLi':'decapitate', 'PaRo':'covers', 
             'PaSp':'disproves', 'ScSc':'tie'}
    p1, p2 = actors.index(p1), actors.index(p2)
    winner, loser = ((p1, p2), (p2, p1))[(1,0,1,0,1)[p1 - p2]]
    return ' '.join([actors[winner],
                     verbs.get(actors[winner][0:2] + actors[loser][0:2],
                               'ties'),
                     actors[loser]])

1
До речі, "розпущений" - це протилежність "жорсткішому". "Невдаха" - це протилежність "переможцю". І це заощадить вам кілька символів у вашому коді.
Джо

2

Рубін, арифметичний підхід

Акторів можна розташувати в масиві таким чином, щоб кожен актор a[i]вигравав проти акторів a[i+1]і a[i+2], наприклад, за модулем 5:

%w(Scissors Lizard Paper Spock Rock)

Тоді, для актора Aз індексом iми можемо побачити, як він співпадає з актором Bз індексом j, виконуючи result = (j-i)%5: Результат 1і 2означає, що актор А виграв проти актора 1 або 2 місця перед ним відповідно; 3і 4аналогічно означає, що він програв проти актора за спиною в його масиві. 0означає краватку. (Зверніть увагу, що це може залежати від мови; в Ruby (j-i)%5 == (5+j-i)%5також коли j>i.)

Найцікавіша частина мого коду - це використання цього властивості для пошуку функції сортування індексів двох дійових осіб. Повернене значення буде -1, 0 або 1 як слід :

winner,loser = [i,j].sort { |x,y| ((y-x)%5+1)/2-1 }

Ось вся справа:

def battle p1,p2
    who = %w(Scissors Lizard Paper Spock Rock)
    how = %w(cut decapitate poisons eats covers disproves smashes vaporizes crushes breaks)
    i,j = [p1,p2].map { |s| who.find_index s }

    winner,loser = [i,j].sort { |x,y| ((y-x)%5+1)/2-1 }

    method = (winner-loser)%5/2
    what = method == 0 && "ties" || how[winner*2 + method-1]

    return "#{who[winner]} #{what} #{who[loser]}"
end

2

Пітон


  def winner(p,q):
        if p==q:
           return(' '.join([p,'tie',q]))
        d = {'ca':'cut','ao':'covers','oi':'crushes','ip':'poisons','pc': 'smashes','ci':'decapitate','ia':'eats', 'ap':'disproves', 'po':'vaporizes','oc': 'breaks'}
        [a,b] = [p[1],q[1]]
        try:
           return(' '.join([p,d[a+b],q]))
        except KeyError:
           return(' '.join([q,d[b+a],p]))

Використання складного словника.


Хороший. return(' '.join([p,'tie' + 's'*(p[1]!='c'),q]))отримає дієслово в часі правильним.
dansalmo

2

C #

Припущення

Супротивники розташовані в n-item масиві, де гравці перемагають (n-1) / 2 гравців попереду них і програють (n-1) / 2 гравцям позаду. (Із списками рівної довжини гравець програє гравцям ((n-1) / 2 + 1) позаду)

Дії гравця розташовуються в масиві, де дії в межах [[indexOfPlayer * (n-1) / 2)] до [(indexOfPlayer * (n-1) / 2)) + (n-2) / 2 - 1 ].

Додаткова інформація

CircularBuffer<T>являє собою обгортку навколо масиву для створення "нескінченного" адресного масиву. TheIndexOfФункція повертає індекс елемента в межах фактичних меж масиву.

Клас

public class RockPaperScissors<T> where T : IComparable
{
    private CircularBuffer<T> players;
    private CircularBuffer<T> actions;

    private RockPaperScissors() { }

    public RockPaperScissors(T[] opponents, T[] actions)
    {
        this.players = new CircularBuffer<T>(opponents);
        this.actions = new CircularBuffer<T>(actions);
    }

    public string Battle(T a, T b)
    {
        int indexA = players.IndexOf(a);
        int indexB = players.IndexOf(b);

        if (indexA == -1 || indexB == -1)
        {
            return "A dark rift opens in the side of the arena.\n" +
                   "Out of it begins to crawl a creature of such unimaginable\n" +
                   "horror, that the spectators very minds are rendered\n" +
                   "but a mass of gibbering, grey jelly. The horrific creature\n" +
                   "wins the match by virtue of rendering all possible opponents\n" +
                   "completely incapable of conscious thought.";
        }

        int range = (players.Length - 1) / 2;

        if (indexA == indexB)
        {
            return "'Tis a tie!";
        }
        else
        {
            indexB = indexB < indexA ? indexB + players.Length : indexB;
            if (indexA + range < indexB)
            {
                // A Lost
                indexB = indexB >= players.Length ? indexB - players.Length : indexB;
                int actionIndex = indexB * range + (indexA > indexB ? indexA - indexB : (indexA + players.Length) - indexB) - 1;

                return players[indexB] + " " + actions[actionIndex] + " " + players[indexA];
            }
            else
            {
                // A Won
                int actionIndex = indexA * range + (indexB - indexA) - 1;

                return players[indexA] + " " + actions[actionIndex] + " " + players[indexB];
            }
        }
    }
}

Приклад

string[] players = new string[] { "Scissors", "Lizard", "Paper", "Spock", "Rock" };
string[] actions = new string[] { "decapitates", "cuts", "eats", "poisons", "disproves", "covers", "vaporizes", "smashes", "breaks", "crushes" };

RockPaperScissors<string> rps = new RockPaperScissors<string>(players, actions);

foreach (string player1 in players)
{
    foreach (string player2 in players)
    {
        Console.WriteLine(rps.Battle(player1, player2));
    }
}
Console.ReadKey(true);

1

Пітон, однолінійний

winner=lambda a,b:(
    [a+" ties "+b]+
    [x for x in 
        "Scissors cut Paper,Paper covers Rock,Rock crushes Lizard,Lizard poisons Spock,Spock smashes Scissors,Scissors decapitate Lizard,Lizard eats Paper,Paper disproves Spock,Spock vaporizes Rock,Rock break Scissors"
        .split(',') 
     if a in x and b in x])[a!=b]

Дуже круто! Ви можете .split(', ')і не повинні заважати, правила, разом.
дансальмо

@dansalmo, дякую, але я не бачу шкоди в JammingTheRulesTogether. Хоча це не змагання з гольфу, я думаю, що чим коротше, тим краще.
угорен

1

Я просто придумав:

echo "winners('Paper', 'Rock')"|sed -r ":a;s/[^ ]*'([[:alpha:]]+)'./\1/;ta;h;s/([[:alpha:]]+) ([[:alpha:]]+)/\2 \1/;G"|awk '{while(getline line<"rules"){split(line,a," ");if(match(a[1],$1)&&match(a[3],$2))print line};close("rules")}' IGNORECASE=1

Тут правила - це файл, що містить усі правила, які були задані.


0

Пітон

Натхненний кодом APL @ Tobia.

def winner(p1, p2):
  x,y = map(lambda s:'  scparolisp'.find(s.lower())/2, (p1[:2], p2[:2]))
  v = (' cut covers crushes poisons smashes'.split(' ')[x*(y in (x+1, x-4))] or
       ' decapitate disproves breaks eats vaporizes'.split(' ')[x*(y in (x+3, x-2))])
  return ' '.join((p1.capitalize(), v or 'tie'+'s'*(x!=1), p2)) if v or p1==p2 \
    else winner(p2, p1)

Результати:

>>> winner('Spock', 'paper')
'Paper disproves Spock'
>>> winner('Spock', 'lizard')
'Lizard poisons Spock'
>>> winner('paper', 'lizard')
'Lizard eats paper'
>>> winner('paper', 'paper')
'Paper ties paper'
>>> winner('scissors',  'scissors')
'Scissors tie scissors'    

0

C ++

#include <stdio.h>
#include <string>
#include <map>
using namespace std ;
map<string,int> type = { {"Scissors",0},{"Paper",1},{"Rock",2},{"Lizard",3},{"Spock",4} };
map<pair<int,int>, string> joiner = {
  {{0,1}, " cuts "},{{0,3}, " decapitates "}, {{1,2}, " covers "},{{1,4}, " disproves "},
  {{2,3}, " crushes "},{{2,0}, " crushes "},  {{3,4}, " poisons "},{{3,1}, " eats "},
  {{4,0}, " smashes "},{{4,2}, " vaporizes "},
} ;
// return 0 if first loses, return 1 if 2nd wins
int winner( pair<int,int> p ) {
  return (p.first+1)%5!=p.second && (p.first+3)%5!=p.second ;
}
string winner( string sa, string sb ) {
  pair<int,int> pa = {type[sa],type[sb]};
  int w = winner( pa ) ;
  if( w )  swap(pa.first,pa.second), swap(sa,sb) ;
  return sa+(pa.first==pa.second?" Ties ":joiner[pa])+sb ;
}

Трохи тесту

int main(int argc, const char * argv[])
{
  for( pair<const string&, int> a : type )
    for( pair<const string&, int> b : type )
      puts( winner( a.first, b.first ).c_str() ) ;
}

0

Javascript

function winner(c1,c2){
    var c = ["Scissors", "Paper", "Rock", "Lizard", "Spock"];
    var method={
        1:["cut", "covers", "crushes", "poisons", "smashes"],
        2:["decapitate", "disproves", "breaks", "eats", "vaporizes"]};
    //Initial hypothesis: first argument wins
    var win = [c.indexOf(c1),c.indexOf(c2)];
    //Check for equality
    var diff = win[0] - win[1];
    if(diff === 0){
        return c1 + ((win[0]===0)?" tie ":" ties ") + c2;
    }
    //If s is -1 we'll swap the order of win[] array
    var s = (diff>0)?1:-1;
    diff = Math.abs(diff);
    if(diff >2){
        diff = 5-diff;
        s= s * -1;
    }
    s=(diff==1)?s*-1:s;
    if(s === -1){
        win = [win[1],win[0]];
    }
    return c[win[0]] + " " + method[diff][win[0]] + " " + c[win[1]];
}

0

Javascript

Я бачу, що це не змагання з гольфу, але я певний час загадував цю головоломку, перш ніж знайти цю тему.

Ось (стандартна) версія js у 278 символів:

function winner(a,b){var c={rock:0,paper:1,scissors:2,spock:3,lizard:4},d="crushe,crushe,cover,disprove,cut,decapitate,smashe,vaporize,poison,eat".split(","),i=c[a],j=c[b],I=i==(j+3)%5;return i^j?i==(j+1)%5||I?a+" "+d[i*2+I]+"s "+b:b+" "+d[j*2+(j==(i+3)%5)]+"s "+a:a+" ties "+b}

Або одна, яка використовує функції E6 (ймовірно, працює лише у Firefox) у 259 символах:

winner=(a,b,c={rock:0,paper:1,scissors:2,spock:3,lizard:4},d="crushe,crushe,cover,disprove,cut,decapitate,smashe,vaporize,poison,eat".split(","),i=c[a],j=c[b],I=i==(j+3)%5)=>i^j?i==(j+1)%5||I?a+" "+d[i*2+I]+"s "+b:b+" "+d[j*2+(j==(i+3)%5)]+"s "+a:a+" ties "+b
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.