C ++, 622 553 자
명확성을 위해 아래에 추가 된 네 개의 불필요한 줄 바꿈.
#include"stdafx.h"
#include"string"
std::string c=" flush",d=" of a kind",e="straight",z[10]={"high card","one pair","two pair","three"+d,e,c,"full house","four"+d,e+c,"royal"+c},
x="CDHSA23456789TJQK";char h[99];int main(){__int64 f,p,t,g,u,v,w,l=1,a=78517370881,b=a+19173960,i,j,q=0;gets_s(h,99);for(i=28;i-->7;){f=p=0;
for(j=7;j--;)if(j!=i%7&j!=(i+i/7)%7){f+=l<<x.find(h[j*3+1])*6;p+=l<<x.find(h[j*3])*3-12;}
v=p&b*2;u=v&v-1;w=p&p/2;g=p*64&p*8&p&p/8&p/64;f&=f*4;t=f&&p==a?9:f&&g?8:p&b*4?7:u&&w?6:f?5:g||p==a?4:w?3:u?2:v?1:0;
q=t>q?t:q;}puts(z[q].c_str());}
골프 버전에서 변경된 사항 :
개정 1 : 모든 숫자 변수를 __int64
단일 선언으로 변경했습니다.
개정 1 : 골프 증가 및 for
루프 조건
개정 0 : 8 진 상수를 10 진수로 변경했습니다.
개정 0 : if
조건부 연산자를 사용하여 할당으로 명령문을 변경했습니다 . 개정 1 :에 대한 단일 표현식으로 다시 재정렬되었습니다 t
. v
중간 값 중 하나에 새 변수 가 필요했습니다.
개정 0 : 자세한 출력을 삭제했습니다. 전반적으로 가장 좋은 핸드만을 출력합니다.
Rev 0 : 출력 텍스트 압축에 주력 (+ 연산자를 사용하여 문자열을 연결할 수 없기 때문에 C에서는 어려움) 그래서 그냥 3 번 썼습니다. 개정 1 : FDinoff가 제안한 std::string
대신에 사용 char[]
하여와 연결할 수 있습니다 +
.
Ungolfed 버전, 비 공백 비 공백 문자 714 개
7 장의 카드로 만들 수있는 21 개의 핸드를 모두 반복하고 매번 2 장씩 거부합니다. 선택된 5 장의 카드의 수트와 순위는 각 수트 / 랭크에 대해 서로 다른 8 진수로 변수 f와 p로 합산됩니다. 핸드 타입을 결정하기 위해 다양한 비트 연산이 수행되고, 핸드 타입은 t에 저장된다 (21 개의 가능성이 모두 언 골프 버전으로 출력된다). 마지막으로 가장 좋은 핸드가 출력된다.
#include "stdafx.h"
#include "string.h"
char x[] = "CDHSA23456789TJQK", h[99], z[10][99] =
{ "high card", "one pair", "two pair","three of a kind", "straight","flush","full house","four of a kind","straight","royal" };
int main(void)
{
int i,j,q=0; //i,j:loop counters. q:best possible hand of 7 card
scanf_s("%s/n", &h, 99); getchar();
for (i = 7; i < 28; i++){
//f,p: count number of cards of each suit (2 octal digits) and rank (1 octal digit.)
//t: best hand for current 5 cards. g:straight flag. u,w: flags for pairs and 3's.
//l: constant 1 (64bit leftshift doesn't work on a literal.)
//octal bitmasks: a=ace high straight, b=general purpose
__int64 f=0,p=0,t=0,g,u,w,l=1,a=01111000000001,b=a+0111111110;
for (j = 0; j < 7; j++){
if (j != i %7 & j != (i+i/7) %7){
f += l << (strchr(x,h[j*3+1])-x)*6;
p += l << (strchr(x,h[j*3])-x-4)*3;
printf_s("%c%c ",h[j*3], h[j*3+1]);
}
}
w=p&b*2; //if 2nd bit set we have a pair
if (w) t=1;
u= w & w-1; //if there is only one pair w&w-1 evaluates to 0; +ve for 2 pair.
if (u) t=2;
w = p & p/2; // if 2nd and 1st bit set we have 3 of kind.
if (w) t=3;
g = p*64 & p*8 & p & p/8 & p/64; // detects all straights except ace high. pattern for ace high in a.
if (g||p==a) t=4;
f&=f*4; //for a flush we want 5 cards of the same suit, binary 101
if (f) t=5;
if (u&&w) t=6; //full house meets conditions of 2 pair and 3 of kind
if (p & b*4) t=7; //four of a kind
if (f && g) t=8; //straight flush
if (f && p==a) t=9; //royal flush
printf_s("%s %s \n",z[t],t>7?z[5]:"");
q=t>q?t:q;
}
printf_s("%s %s",z[q],q>7?z[5]:"");
getchar();
}
언 골프 출력