三目並べの勝者を決定する(ラウンドベース)


26

いくつかのコードゴルフをプレイしましょう!

課題は、三目並べゲームの勝者を見つけることです。

これは、明確な勝者が1人いるボードを提供することで何度も行われてきましたが、ここにひねりがあります。

セルには次のように番号が付けられます。

1|2|3
-+-+-
4|5|6
-+-+-
7|8|9

そのように正確に9つの動きの配列を取得します:

{3, 5, 6, 7, 9, 8, 1, 2, 3}

これは次のように解析されます。

  • プレーヤー1がセル3をマークする
  • プレーヤー2がセル5をマークする
  • プレーヤー1がセル6をマークする
  • プレーヤー2がセル7をマーク
  • プレーヤー1がセル9をマークする
  • プレイヤー1が勝ちました

注:1人のプレーヤーが勝った後もゲームは停止しません。負けたプレーヤーは勝ったプレーヤーの後に3連勝することができますが、最初の勝ちのみがカウントされます。

あなたの仕事は、入力として9個の数字を取得し、勝ったプレイヤーと勝ったラウンドを出力することです。誰も勝てない場合は、選択した定数を出力します。任意の標準的な平均/形式で入力を受け取り、出力を提供できます。

楽しむ!

要求されたいくつかの例:

{2,3,4,5,6,7,1,8,9} => Player 2 wins in round 6
{1,2,4,5,6,7,3,8,9} => Player 2 wins in round 8
{1,2,3,5,4,7,6,8,9} => Player 2 wins in round 8

11
PPCGへようこそ!これは素晴らしい最初の投稿ですが、通常、非常に制限された入力/出力形式は好きではありません。「プレーヤーXがラウンドYで勝つ」を削除して、リストなどの適切な形式で出力できるようにすることを検討してください[X, Y]。同点の場合、代わりに他の一貫した値を出力できますか?これらの正確な文字列を印刷することは実際にはゴルフの一部ではないので、私はお勧めします。今後のチャレンジのアイデアのために、サンドボックスの使用をお勧めします。:-)
Mr Xcoder

すみません、悪いです。今は正しいと思います。
-Grunzwanzling

最後までチャレンジを読んでください。抽選が行われる可能性があり、発生したときに選択したものを出力できると言います。ラウンド2でプレイヤー2が勝ったとき{2,6}を返し、誰も勝たなかったとき{0,0}を返します。
Grunzwanzling

0インデックスのすべてを使用できますか?(セル、プレーヤー、ラウンド)
アーナウド

1
「そのように正確に9つの動きの配列を取得します。 {3, 5, 6, 7, 9, 8, 1, 2, 3}」- 3本当に2回表示されるべきですか?
ジョナサンアラン

回答:


8

網膜、114バイト

(.)(.)
$1O$2X
^
123;;456;;789¶X
{`(.)(.*¶)(.)\1
$3$2
}`.*(.)(.)*\1(?<-2>.)*(?(2)(?!))\1.*¶(..)*
$1$#3
.*¶
T
T`d`Rd

オンラインでお試しください!三目並べへの私の答えに基づいて-XまたはO?X<N>最初のプレイヤーNがターン後に勝ったO<N>場合、2番目のプレイヤーが勝ったT場合、どちらも勝てなかった場合に出力します。説明:

(.)(.)
$1O$2X
^
123;;456;;789¶X

内部ボードを作成し、各手にその手がいるプレイヤーをマークします。

{`(.)(.*¶)(.)\1
$3$2

移動を適用します。

}`.*(.)(.)*\1(?<-2>.)*(?(2)(?!))\1.*¶(..)*
$1$#3

勝ちを検索し、見つかった場合は、ボードを勝者と残りの動きの数に置き換えます。

.*¶
T

動きが尽きて誰も勝てなかったら、ゲームは引き分けになります。

T`d`Rd

残りの動きの数からラウンドの数を計算します。


4
これは、もう1つです。ここで私が見た官能的な答えです。
ファルカードLord 18年

6

MATL、39バイト

3:g&+XIx"IX@oXK@(XIt!yXdyPXd&hK=Aa?KX@.

出力は

  • 1そしてR、ユーザー1がラウンドで勝った場合、別々の行で Rで ;
  • 0そしてR、ユーザー2がラウンドで勝った場合、別々の行で Rで ;
  • 誰も勝てない場合は空です。

オンラインでお試しください!またはすべてのテストケースを確認します

説明

3:       % Push [1 2 3]
g        % Convert to logical. Gives [true true true]
&+       % Matrix of all pairs of additions. Gives a 3×3 matrix, which represents
         % the board in its initial state, namely all cells contain 2. This value
         % means "cell not used yet". 1 will represent "cell marked by user 1",
         % and 0 will represent "cell marked by user 2"
XI       % Copy into clipboard I
x        % Delete
"        % Implicit input: array with moves. For each move
  I      %   Push current board state
  X@     %   Push iteration index (starting at 1), that is, current round number
  o      %   Modulo 2: gives 1 or 0. This represents the current user
  XK     %   Copy into clipboard K
  @      %   Push current move ((that is, cell index)
  (      %   Write user identifier (1 or 0) into that cell. Cells are indexed
         %   linearly in column-major order. So the board is transposed compared
         %   to that in the challenge, but that is unimportant
  XI     %   Copy updated board into clipboard I
  t!     %   Duplicate and transpose
  y      %   Duplicate from below: push copy of board
  Xd     %   Extract main diagonal as a 3×1 vector
  y      %   Duplicate from below: push copy of transposed board
  PXd    %   Flip vertically and extract main diagonal. This is the anti-diagonal
         %   of the board
  &h     %   Concatenate stack horizontally. This concatenates the board (3×3),
         %   transposed board (3×3), main diagonal (3×1 vector) and anti-diagonal
         %   (3×1) into an 3×8 matrix
  K=     %   Push current user identifier. Test for equality with each entry of the
         %   3×8 matrix
  A      %   For each column, this gives true if all its entries are true. Note 
         %   that the first three columns in the 3×8 matrix are the board columns;
         %   the next three are the board rows; and the last two columns are the
         %   main diagonal and anti-diagonal. The result is a 1×8 vector
  a      %   True if any entry is true, meaning the current user has won
  ?      %   If true
    K    %     Push current user identifier
    X@   %     Push current round number
    .    %     Break for loop
         %   Implicit end
         % Implicit end
         % Implicit display

5

Javascript(ES6)、130バイト

m=>m.reduce((l,n,i)=>l||(b[n-1]=p=i%2+1,"012,345,678,036,147,258,048,246".replace(/\d/g,m=>b[m]).match(""+p+p+p)&&[p,i+1]),0,b=[])

f=m=>m.reduce((l,n,i)=>l||(b[n-1]=p=i%2+1,"012,345,678,036,147,258,048,246".replace(/\d/g,m=>b[m]).match(""+p+p+p)&&[p,i+1]),0,b=[])
console.log(JSON.stringify(f([3,5,6,7,9,8,1,2,3])))
console.log(JSON.stringify(f([2,3,4,5,6,7,1,8,9])))
console.log(JSON.stringify(f([1,2,4,5,6,7,3,8,9])))
console.log(JSON.stringify(f([1,2,3,5,4,7,6,8,9])))

説明

m=>m.reduce((l,n,i)=>               // Reduce the input array with n as the current move
  l||(                              //  If there is already a winner, return it
  b[n-1]=p=i%2+1,                   //  Set the cell at b[n-1] to the current player p
  "012,345,678,036,147,258,048,246" //  For every digit in the list of possible rows:
    .replace(/\d/g,m=>b[m])         //   Replace it with the player at the cell
    .match(""+p+p+p)                //  If any of the rows is filled with p:
      &&[p,i+1]                     //   Return [p, current move]
),0,b=[])

説明を提供してもよろしいですか?私はあなたの解決策を理解することに興味があります。
ジャック

4

Java(OpenJDK 8)、445バイト

int[] t(int[]m){int[][]f=new int[3][3];boolean z=false;for(int i=0;i<9;i++){f[m[i]%3][m[i]/3]=z?2:1;if(f[m[i]%3][0]==(z?2:1)&&f[m[i]%3][1]==(z?2:1)&&f[m[i]%3][2]==(z?2:1)||f[0][m[i]/3]==(z?2:1)&&f[1][m[i]/3]==(z?2:1)&&f[2][m[i]/3]==(z?2:1)||m[i]%3+m[i]/3==2&&f[0][2]==(z?2:1)&&f[1][1]==(z?2:1)&&f[2][0]==(z?2:1)||m[i]%3==m[i]/3&&f[0][0]==(z?2:1)&&f[1][1]==(z?2:1)&&f[2][2]==(z?2:1)){return(new int[]{(z?2:1),++i});}z=!z;}return(new int[]{0,0});}

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

戻り値{1,8}は、プレーヤー1がラウンド8で勝ったことを意味します。戻り値{0,0}は、引き分けを意味します。


5
不要な間隔をすべて削除しない限り、ゴルフの努力が不足しているため、この回答は無効と見なされます。さらに、あなた自身の挑戦にそんなに早く答えることは本当にお勧めできません。あなたのコードをテストできるように、TIOリンクを追加したいかもしれません。
Mr Xcoder


申し訳ありませんが、間違ったものをコピーしました。実際にはもっと短いです
-Grunzwanzling

いくつかのバイトを削除するには、Javaでのゴルフの質問のヒントをご覧ください。たとえば、falseに置き換えることができ1<0、最初のスペースは]削除できます。
user202729

442バイト。また、TIOに「ヘッダー」セクションと「フッター」セクションが存在する理由は、コメント//Code that was submittedやを入力する必要がないため//End of codeです。
user202729

2

Kotlin、236バイト

i.foldIndexed(l()to l()){o,(a,b),p->fun f(i:(Int)->Int)=b.groupBy(i).any{(_,v)->v.size>2}
if(f{(it-1)/3}|| f{it%3}|| listOf(l(1,5,9),l(3,5,7)).any{b.containsAll(it)}){return p%2+1 to o}
b to a+p}.let{null}
fun l(vararg l:Int)=l.toList()

美化

    i.foldIndexed(l() to l()) { o, (a, b), p ->
        fun f(i: (Int) -> Int) = b.groupBy(i).any { (_, v) -> v.size > 2 }
        if (f { (it - 1) / 3 } || f { it % 3 } || listOf(l(1, 5, 9), l(3, 5, 7)).any { b.containsAll(it) }) {
            return p % 2 + 1 to o
        }
        b to a + p
    }.let { null }
fun l(vararg l:Int)= l.toList()

テスト

fun f(i: List<Int>): Pair<Int, Int>? =
i.foldIndexed(l()to l()){o,(a,b),p->fun f(i:(Int)->Int)=b.groupBy(i).any{(_,v)->v.size>2}
if(f{(it-1)/3}|| f{it%3}|| listOf(l(1,5,9),l(3,5,7)).any{b.containsAll(it)}){return p%2+1 to o}
b to a+p}.let{null}
fun l(vararg l:Int)=l.toList()

data class Test(val moves: List<Int>, val winner: Int, val move: Int)

val tests = listOf(
        Test(listOf(3, 5, 6, 7, 9, 8, 1, 2, 3), 1, 5),
        Test(listOf(2, 3, 4, 5, 6, 7, 1, 8, 9), 2, 6),
        Test(listOf(1, 2, 4, 5, 6, 7, 3, 8, 9), 2, 8),
        Test(listOf(1, 2, 3, 5, 4, 7, 6, 8, 9), 2, 8)
)

fun main(args: Array<String>) {
    tests.forEach { (input, winner, move) ->
        val result = f(input)
        if (result != winner to move) {
            throw AssertionError("$input ${winner to move} $result")
        }
    }
}

TIO

TryItOnline


1

Python 2、170バイト

q=map(input().index,range(1,10))
z=zip(*[iter(q)]*3)
o='',
for l in[q[2:7:2],q[::4]]+z+zip(*z):
 r=[n%2for n in l];y=all(r)*2+1-any(r)
 if y:o+=[max(l)+1,y],
print min(o)

オンラインでお試しください!またはすべてのテストケースを試す

#swap cell number / turn
q=map(input().index,range(1,10))
#split in 3 parts (rows)
z=zip(*[iter(q)]*3)
#starting value for the list with the results
#since string are "greater" than lists, this will
#be the output value when there is a draw
o='',
#iterate over diagonals, rows and columns
for l in[q[2:7:2],q[::4]]+z+zip(*z):
 #use %2 to separate between player 1 and 2
 r=[n%2 for n in l]
 #store in y the value of the player if the trio is a valid win, 0 otherwise
 #it's a win if all moves are from the same player
 y=all(r)*2+1-any(r)
 #if y has a valid player, add the highest turn of the trio, and the player to o
 if y:o+=[max(l)+1,y],
#output the smaller turn of the valid winning trios
print min(o)


1

Python 3.6以降、137バイト

n=m=c=z=0
for a in input():m+=1<<~-int(a);c+=1;z=z or f'{c&1}:{c}'*any(m&t==t for t in[7,56,448,73,146,292,273,84]);n,m=m,n
print(z or-1)

出力形式は、同額winner number:roundまたは同額です-1。プレイヤー2は0プレイヤー1です1。1インデックス付きの正方形の数字の未定義の文字列の形式で入力します。


1

ゼリー、35 バイト

9s3,ZU$$;ŒD$€Ẏf€⁸L€3e
s2ZÇƤ€ZFTḢ;Ḃ$

動きのリストを取得してリストを返すモナドリンク。[move, player]プレーヤーは1(最初に行動する)および0(行動するために2番目)として識別されます。

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

どうやって?

9s3,ZU$$;ŒD$€Ẏf€⁸L€3e - Link 1: any winning play?: list of player's moves:
9s3                   - (range of) nine split into threes = [[1,2,3],[4,5,6],[7,8,9]]
       $              - last two links as a monad:
      $               -   last two links as a monad:
    Z                 -     transpose = [[1,4,7],[2,5,8],[3,6,9]]
     U                -     upend     = [[7,4,1],[8,5,2],[9,6,3]]
   ,                  -  pair = [[[1,2,3],[4,5,6],[7,8,9]],[[7,4,1],[8,5,2],[9,6,3]]]
           $€         - last two links as a monad for €ach:
         ŒD           -   diagonals = [[1,5,9],[2,6],[3],[7],[4,8]] or [[7,5,3],[4,2],[1],[9],[8,6]]
        ;             -  concatenate = [[1,2,3],[4,5,6],[7,8,9],[1,5,9],[2,6],[3],[7],[4,8]] or [[7,4,1],[8,5,2],[9,6,3],[7,5,3],[4,2],[1],[9],[8,6]]
             Ẏ        - tighten = [[1,2,3],[4,5,6],[7,8,9],[1,5,9],[2,6],[3],[7],[4,8],[7,4,1],[8,5,2],[9,6,3],[7,5,3],[4,2],[1],[9],[8,6]]
                      -    i.e.:    row1    row2    row3    diag\   x     x   x   x     col1    col2    col3    diag/   x     x   x   x
                      -    where x's are not long enough to matter for the rest...
                ⁸     - chain's left argument, list of player's moves
              f€      - filter to keep those moves for €ach of those lists to the left
                 L€   - length of €ach result
                   3e - 3 exists in that? (i.e. were any length 3 when filtered down to only moves made?)

s2ZÇƤ€ZFTḢ;Ḃ$ - Main link: list of the moves  e.g. [2,3,4,5,6,7,1,8,9]
s2            - split into twos                    [[2,3],[4,5],[6,7],[1,8],[9]]
  Z           - transpose                          [[2,4,6,1,9],[3,5,7,8]]
    Ƥ€        - for Ƥrefixes of €ach:
   Ç          -   call last link (1) as a monad     [0,0,0,0,0] [0,0,1,1]
      Z       - transpose                          [[0,0],[0,0],[0,1],[0,1],[0]]
       F      - flatten                            [0,0,0,0,0,1,0,1,0]
        T     - truthy indices                     [          6   8  ]
         Ḣ    - head (if empty yields 0)           6
            $ - last two links as a monad:
           Ḃ  -   modulo by 2 (evens are player 2) 0
          ;   -   concatenate                      [6,0]

0

Python 2、168バイト

import itertools as z
f=lambda g:next(([i%2+1,i+1]for i in range(9) if any(c for c in z.combinations([[0,6,1,8,7,5,3,2,9,4][j]for j in g[i%2:i+1:2]],3)if sum(c)==15)),0)

出力(プレイヤー、ラウンド)またはタイの場合は0。

ゲームを3行3列の魔方陣にマップし、合計15の3つのOまたはXのセットを探します。


0

Clean244 ... 220バイト

import StdEnv
f[a,b]i#k= \l=or[and[isMember(c+n)(take i l)\\c<-:"123147159357"%(j,j+2)]\\j<-[0,3..9]&h<-:"\0\0",n<-[h-h,h,h+h]]
|k a=(1,i*2-1)|i>4=(0,0)|k b=(2,i*2)=f[a,b](i+1)
@l=f(map(map((!!)l))[[0,2..8],[1,3..7]])1

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

反復処理さhれた文字列には印刷不可能な文字が含まれており、と同等"\003\001\000\000"です。


0

パイソン2140の 136 134バイト

lambda a,i=0:i<9and(any(set(a[i%2:i+1:2])>=set(map(int,t))for t in'123 456 789 147 258 369 159 357'.split())and(i%2+1,i+1)or f(a,i+1))

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

編集:エリック・ザ・アウトゴルファーへの4バイト+ 2バイトの送信。

タプル(playerNumber、roundNumber)を出力するか、勝者がいない場合はFalseを出力します。



@エリック-ああ、私はすでにそれをしているはずです。しかし、私はインフルエンザと戦っていて、私の目が痛かったです:)。THX!
チャスブラウン

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