Tic-Tac-Toe 수상자 결정 (라운드 기반)


26

코드 골프를하자!

도전은 Tic-Tac-Toe 게임의 승자를 찾는 것입니다.

이것은 분명한 승자가있는 보드를 제공함으로써 여러 번 이루어졌지만 여기에 트위스트가 있습니다.

셀 번호는 다음과 같습니다 :

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이 이겼습니다

참고 : 한 명의 플레이어가이긴 후에 게임이 중단되지는 않습니다. 패배 한 플레이어가 승리 한 플레이어 다음에 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에 오신 것을 환영합니다! 이것은 좋은 첫 번째 게시물이지만 일반적으로 매우 제한적인 입력 / 출력 형식을 좋아하지 않습니다 . "Player X wins in Y"를 제거하고 목록과 같은 합리적인 형식으로 출력하도록 [X, Y]하시겠습니까? 동점 인 경우 다른 일관된 값을 대신 출력 할 수 있습니까? 정확한 문자열을 인쇄하는 것은 실제로 골프의 일부가 아니므로 권장합니다. 향후 도전 과제 아이디어를 얻으려면 샌드 박스를 사용하는 것이 좋습니다 . :-)
Mr. Xcoder

미안 내 잘못이야. 지금은 맞다고 생각합니다.
Grunzwanzling

끝까지 도전을 읽으십시오, 나는 무승부가있을 수 있으며 당신이 선택한 일이 발생할 때 당신이 선택한 것을 출력 할 수 있다고 말합니다. 플레이어 2가 6 라운드에서 이기면 {2,6}을, 아무도 이기지 않으면 {0,0}을 반환합니다.
Grunzwanzling

인덱스가없는 모든 것을 사용할 수 있습니까? (셀, 플레이어, 라운드)
Arnauld

1
"정확히 9 개의 움직임 이 나옵니다 : {3, 5, 6, 7, 9, 8, 1, 2, 3}"- 3두 번 나타나야합니까?
Jonathan Allan

답변:


8

레티 나 114 바이트

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

온라인으로 사용해보십시오! Tic-Tac-Toe-X 또는 O 에 대한 나의 대답을 바탕으로 ? . X<N>첫 번째 플레이어가 N턴 후 이기면 출력 O<N>하고 두 번째 플레이어가 이기면 T둘 다 이기지 않으면 출력 합니다 . 설명:

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

내부 보드를 생성하고, 자신의 움직임이있는 플레이어로 각 움직임을 표시합니다.

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

이동을 적용합니다.

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

승리를 검색하고 하나를 찾으면 보드를 승리자로 바꾸고 남은 움직임 수로 바꿉니다.

.*¶
T

움직임이 소진되고 아무도 이겼다면 게임은 동점입니다.

T`d`Rd

남은 움직임 수에서 라운드 수를 계산합니다.


4
이것은 내가 본 것 중 더 .... 풍만한 답변 중 하나입니다.
Lord Farquaad

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

자바 스크립트 (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=[])

설명이나 골프 용 버전을 제공해 주시겠습니까? 귀하의 솔루션을 이해하는 데 관심이 있습니다.
Jack

4

자바 (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 바이트 . 또한 "Header"및 "Footer"섹션이 TIO에 존재하는 이유는 //Code that was submitted및 을 언급 할 필요가 없기 때문 //End of code입니다.
user202729

2

코 틀린 , 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

파이썬 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(두 번째 행동) 으로 식별됩니다 .

온라인으로 사용해보십시오!

방법?

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

파이썬 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입니다.

게임을 3x3 매직 스퀘어에 매핑하고 합계가 15 인 3 Os 또는 X 세트를 찾습니다.


0

클린 , 244 ... 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

파이썬 (2) , 140 (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))

온라인으로 사용해보십시오!

편집 : Outgolfer Eric에게 4 바이트 + 2 바이트.

승자가없는 경우 튜플 (playerNumber, roundNumber) 또는 False를 출력합니다.



@Erik-Yah, 나는 이미 그렇게 했어야했다. 그러나 나는 독감과 싸우고 있고 눈이 아프다 :). 고마워!
Chas Brown

빨리, 빨리. :)
Outgolfer Erik
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.