동심 ASCII 육각형 그리기


15

뚜렷한 양의 정수 세트를 사용 하고 슬래시, 밑줄, 공백 및 줄 바꿈으로 만들어진 측면 길이를 가진 동심 육각형 의 ASCII 렌더링을 출력하는 가능한 가장 짧은 프로그램을 작성하십시오 .

https://mothereff.in/byte-counter에 의해 계산 된 가장 짧은 바이트 단위의 프로그램이 이깁니다.

줄 간격이 적을수록 더 좋아 보입니다.

입력이 1출력 인 경우 측면 길이가 1 인 육각형이어야합니다.

 __ 
/  \
\__/

육각형의 상단과 하단에 두 개의 밑줄이 사용되므로 비율이 더 좋습니다.

일반적으로 크기 N 육각형에는 각 각에 N 슬래시가 있고 상단과 하단에 2 * N 밑줄이 있습니다.

입력이 1 2출력 인 경우 측면 길이 1과 2의 동심 육각형이어야합니다.

  ____
 / __ \
/ /  \ \
\ \__/ /
 \____/

입력이 1 3출력 이면 다음과 같아야합니다.

   ______
  /      \
 /   __   \
/   /  \   \
\   \__/   /
 \        /
  \______/

입력이 1 3 2출력 이면 다음과 같아야합니다.

   ______
  / ____ \
 / / __ \ \
/ / /  \ \ \
\ \ \__/ / /
 \ \____/ /
  \______/

기타

I / O 규칙

입력은 명령 행 또는 stdin에서 가져와야하지만 가장 편리한 형식 일 수 있습니다.

예를 들어, 각 숫자를 명령 행 인수 : > myprogram 1 3 2로 지정하거나 사용자에게 숫자를 사전 형식화 된 목록으로 입력하도록 프롬프트 할 수 있습니다 [1, 3, 2].

출력은 stdout 또는 해당 언어와 가장 비슷한 것으로 이동해야합니다.

추가 규칙

  • 입력은 반드시 반드시 순서가 아닌 고유 한 양의 정수 세트입니다 .
  • 출력은 ...
    • /\ _개행 문자 외에는 어떤 문자도 포함하지 마십시오 .
    • 후행 공백이나 불필요한 선행 공백이 없습니다.
    • 외부 선행 개행 문자를 포함하지 않지만 선택적인 후행 개행 문자 가있을 수 있습니다 .
  • 아무것도 입력되지 않으면 아무것도 출력하지 않습니다 (한 줄 바꿈 제외).
  • 도움이되는 경우 입력 정수가 2 16 미만이라고 가정 할 수 있습니다 .

는 않습니다 1가장 안쪽 또는 바깥 쪽 육각형을 참조하십시오?
NinjaBearMonkey 1

@hsl 1(또는 임의의 숫자)는 측면 길이가 1 인 육각형을 나타냅니다. (1 슬래시 = 2 밑줄이라는 경고의 1경우 항상 ) 가장 안쪽 육각형을 나타냅니다.
Calvin 's Hobbies

답변:


4

CJam, 148 (116) 109 바이트

예상보다 시간이 오래 걸렸습니다. 원래, 나는 다이아몬드 도전과 같이 반복적으로 왼쪽 위 사분면을 만들고 나머지는 미러링에서 얻고 싶었습니다. 그러나 밑줄이 상반기의 대칭 대칭을 따르지 않는다는 것을 알지 못했습니다. 그래서 오른쪽 절반을 반복적으로 생성하고 한 번만 (왼쪽) 미러링하기 위해 대부분을 다시 실행해야했습니다.

S]2[l~]:(f#:+2bW%{_,2/~:T;{IT):T1<'\'/?S?S++}%__,2/=,2/I'_S?*_S+a@+\I'/S?S++a+}fI{)T)2*2$,-*1$W%"\/"_W%er@N}/

여기에서 테스트하십시오.

피보나치 같은 예 :

8 3 1 5 2
        ________________
       /                \
      /                  \
     /     __________     \
    /     /          \     \
   /     /   ______   \     \
  /     /   / ____ \   \     \
 /     /   / / __ \ \   \     \
/     /   / / /  \ \ \   \     \
\     \   \ \ \__/ / /   /     /
 \     \   \ \____/ /   /     /
  \     \   \______/   /     /
   \     \            /     /
    \     \__________/     /
     \                    /
      \                  /
       \________________/

설명:

맨 위에 언급했듯이 오른쪽 절반을 반복적으로 작성하는 것으로 시작합니다. 즉, 처음에는 그리드에 단일 공간이 있고 각 가능한 링에 대해 기존 그리드를 공간 또는 새로운 반 육각형으로 둘러 쌉니다.

완료되면 각 줄을 왼쪽으로 미러링하고 올바른 정렬을 위해 선행 공백으로 채 웁니다. 코드는 다음과 같습니다.

"Prepare the input and the grid:";
S]2[l~]:(f#:+2bW%
S]                "Push string with a space and wrap it in an array. This is the grid.";
  2               "Push a 2 for future use.";
   [l~]           "Read and evaluate the input, wrap it in an array.";
       :(         "Decrement each number by 1.";
         f#       "Map each number i to 2^i.";
           :+     "Sum them all up.";
             2b   "Get the base two representation.";
               W% "Reverse the array.":
"At this point, the stack has the proto-grid at the bottom, and an array of 1s and
 0s on top, which indicates for each hexagon if it's present or not.";

"Next is a for loop, which runs the block for each of those 0s and 1s, storing the
 actual value in I. This block adds the next semi-hexagon or spaces.";
{ ... }fI

"First, append two characters to all existing lines:";
_,2/~:T;{IT):T1<'\'/?S?S++}%
_                            "Duplicate the previous grid.";
 ,2/                         "Get its length, integer-divide by 2.";
    ~:T;                     "Get the bitwise complement and store it in T. Discard it.";
        {                 }% "Map this block onto each line of the grid.";
         I                   "Push the current hexagon flag for future use.";
          T):T               "Push T, increment, store the new value.";
              1<'\'/?        "If T is less than 1, push \, else push /.";
                     S?      "If the current flag is 0, replace by a space.";
                       S++   "Append a space and add it to the current line.";

"So for hexagons this appends '\ ' to the top half and '/ ' to the bottom half.
 For empty rings, it appends '  ' to all lines.";

"Now add a new line to the top and the bottom:"    
__,2/=,2/I'_S?*_S+a@+\I'/S?S++a+
__                               "Get two copies of the grid.";
  ,2/                            "Get its length, integer-divide by 2.";
     =                           "Get that line - this is always the middle line.";
      ,2/                        "Get ITS length, integer'divide by 2.";
         I'_S?*                  "Get a string of that many _ or spaces depending on the 
                                  current flag.";
               _S+               "Duplicate and a space.";
                  a@+            "Wrap in an array, pull up the grid, and prepend the line.";
                     \           "Swap with the other copy.";
                      I'/S?      "Choose between / and a space depending on the flag.";
                           S++   "Append a space, and add both characters to the line.";
                              a+ "Wrap in an array, and append line to the grid.";

"This is all. Rinse and repeat for all rings. The result will look something like this:

_____ 
     \ 
___   \ 
__ \   \ 
_ \ \   \ 
 \ \ \   \ 
_/ / /   / 
__/ /   / 
___/   / 
      / 
_____/ 

Note that there are still trailing spaces.";

"Finish up all lines. These will not be joined together any more, but simply left
 on the stack in pieces to printed out back-to-back at the end of the program.
 The following runs the given block for each line:";
{ ... } /

"This generates the necessary indentation, then mirrors the lines and puts them
 in the right order:"
)T)2*2$,-*\_W%"\/"_W%er\N
)                         "Slice off that trailing space, but leave it on the stack.";
 T                        "Remember T? That still has something like the the size of
                           the grid from the last iteration. In fact it's N-1, where
                           N is the largest visible hexagon. We can use that to figure
                           out how many spaces we need.";
  )2*                     "Increment and double.";
     2$                   "Copy the current line.";
       ,-                 "Subtract its length from 2*N.";
         *                "Repeat the space that often. This is our indentation.";
          \_              "Swap with the line and duplicate.";
            W%            "Reverse the line.";
              "\/"_W%er   "Replace slashes with backslashes and vice versa.";
                       \  "Swap with the original line.";
                        N "Push a line break.";

5

파이썬 - 251, 240, 239 (228)

l=input()+[0];m=max(l);A=abs;R=range
for j in R(2*m+1):print''.join([[' \\'[(A(j-i+m-1)/2.in l)*(2*m-i)/(j-m-.5)>1],'/'][(A(3*m-i-j)/2.in l)*(i-m-j+.5)/(j-.5-m)>0],'_'][(A(m-j)in l)*(A(2*m-i-.5)<A(m-j))]for i in R(4*m)).rstrip()

대체 접근법 (251) :

l=input()+[0]
l.sort()
m=max(l)
M=2*m
s=[[' ']*m*4for j in' '*(M+1)]
for i in l:
 I=2*i;s[m-i][M-i:M+i]=s[m+i][M-i:M+i]='_'*I
 for k in range(i):K=k+1;s[m-k][M-I+k]=s[m+K][M+I-K]='/';s[m-k][M+I-K]=s[m+K][M-I+k]='\\'
for t in s:print''.join(t).rstrip()

3

APL (UTF-8에서 222 바이트)

(및 133 자)

이 질문은 UTF8 표현에서 바이트의 양을 구체적으로 요구하기 때문에 실제로 는 더 길게 풀어야 하지만 UTF8 표현은 더 짧습니다. (특히, 통근 연산자의 문자 는 3 바이트이고 ()2 자에 불과하므로 최적화는 더 이상 작동하지 않으며 할당 비용도 매우 비쌉니다.)

{⎕←(~⌽∧\⌽⍵=' ')/⍵}¨↓⊃{⍵{⍺=' ':⍵⋄⍺}¨K↑(-.5×(K←⍴⍵)+⍴⍺)↑⍺}/{Z⍪⌽⊖Z←↑(⊂(⍵/' '),(2×⍵)/'-'),⍵{((-⍵)↑'/'),((2 4-.×⍵⍺)/' '),'\'}¨⌽⍳⍵}¨N[⍋N←,⎕]

이전 버전은 문자 (124)는 짧지 만 UTF-8 (230, 두 번째로 표시)로 표시 될 때 더 많은 바이트를 사용합니다.

M←' '⋄{⎕←⍵/⍨~⌽∧\⌽⍵=M}¨↓⊃{⍵{⍺=M:⍵⋄⍺}¨K↑⍺↑⍨-.5×(K←⍴⍵)+⍴⍺}/{Z⍪⊖⌽Z←↑(⊂(⍵/M),'-'/⍨2×⍵),⍵{('/'↑⍨-⍵),'\',⍨M/⍨2 4-.×⍵⍺}¨⌽⍳⍵}¨N[⍋N←,⎕]

테스트:

      {⎕←(~⌽∧\⌽⍵=' ')/⍵}¨↓⊃{⍵{⍺=' ':⍵⋄⍺}¨K↑(-.5×(K←⍴⍵)+⍴⍺)↑⍺}/{Z⍪⌽⊖Z←↑(⊂(⍵/' '),(2×⍵)/'-'),⍵{((-⍵)↑'/'),((2 4-.×⍵⍺)/' '),'\'}¨⌽⍳⍵}¨N[⍋N←,⎕]
⎕:
      3 1 5 2
     ----------
    /          \
   /   ------   \
  /   / ---- \   \
 /   / / -- \ \   \
/   / / /  \ \ \   \
\   \ \ \  / / /   /
 \   \ \ -- / /   /
  \   \ ---- /   /
   \   ------   /
    \          /
     ----------

이것은 위쪽과 아래쪽에 대한 사양을 충족하지 않는 것 같습니다 (하이픈이 아닌 밑줄이어야 함). 따라서 아래쪽에 대해 한 줄씩 오프셋됩니다.
Martin Ender

1

Perl 5, 352 ( anE플래그의 경우 349 바이트 + 3 )

이것은 아마도 더 많은 골프를 쳤다 ..

@b=sort{$a>$b}@F;map{$_<$j||($j=$_)}@b;$k=++$j;for(;$j--;){$z=$"x$j;for($e=$k;--$e>$j;){$z.=$e~~@b?'/ ':'  '} $z.=($j~~@b?'_':$")x(2*$j);$z.=$_~~@b?' \\':'  'for($j+1..$k-1);say$z}for(0..$k-2){$z=$"x$_;for($e=$k;--$e>$_;){$z.=($e-$k+1?$":'').($e~~@b?'\\':$")}$z.=(($_+1)~~@b?'_':$")x(2*$_+2);$z.=($_~~@b?'/':$").($_-$k+1?$":'')for($_+1..$k-1);say$z}

언 골프 드 :

# sort list of side lengths 
@b=sort{$a>$b}@F; 
# set $k and $j to max side length + 1
map{$_<$j||($j=$_)}@b;$k=++$j;
for(;$j--;){
  $z=$"x$j;
  for($e=$k;--$e>$j;){$z.=$e~~@b?'/ ':'  '}
  $z.=($j~~@b?'_':$")x(2*$j);
  $z.=$_~~@b?' \\':'  'for($j+1..$k-1);
  say$z
}
for(0..$k-2){
  $z=$"x$_;
  for($e=$k;--$e>$_;){$z.=($e-$k+1?$":'').($e~~@b?'\\':$")}
  $z.=(($_+1)~~@b?'_':$")x(2*$_+2);
  $z.=($_~~@b?'/':$").($_-$k+1?$":'')for($_+1..$k-1);
  say$z 
}

예 ( 1 5 3 14) :

              ____________________________
             /                            \
            /                              \
           /                                \
          /                                  \
         /                                    \
        /                                      \
       /                                        \
      /                                          \
     /                 __________                 \
    /                 /          \                 \
   /                 /   ______   \                 \
  /                 /   /      \   \                 \
 /                 /   /   __   \   \                 \
/                 /   /   /  \   \   \                 \
\                 \   \   \__/   /   /                 /
 \                 \   \        /   /                 /
  \                 \   \______/   /                 /
   \                 \            /                 /
    \                 \__________/                 /
     \                                            /
      \                                          /
       \                                        /
        \                                      /
         \                                    /
          \                                  /
           \                                /
            \                              /
             \____________________________/

1

C # -388316 바이트

편집 : 후행 공백을 인쇄하지 않고 일부 LINQ에서 던지는 방법을 변경했습니다.

명령 행 인수를 취하는 간단한 프로그램. 최대 육각 치수로 정의 된 사각형의 각 줄에서 가능한 모든 문자를 반복하고 줄을 자르고 연속적으로 인쇄하기 전에 현재 줄에 추가합니다 (선택적인 후행 줄 바꿈).

골프 코드 :

using System.Linq;class P{static void Main(string[]A){var I=A.Select(int.Parse);int m=I.Max(),i,j,y,x;for(j=m+1;j-->-m;){var r="";for(i=-2*m-1;++i<2*m-(y=j<0?-j-1:j);)r+="/\\_- "[(x=i<0?-i-1:i)>y&(x+=y)%2>0&x/2<m&&I.Contains(x/2+1)?(i^j)&1:x-y<(y=j<0?-j:j)&y<=m&I.Contains(y)?j<0?2:3:4];System.Console.WriteLine(r);}}}

Ungolfed 코드 :

using System.Linq; // all important

class P
{
    static void Main(string[]A)
    {
        var I=A.Select(int.Parse); // create int array

        for(int m=I.Max(),j=m+1,i,y,x;j-->-m;) // for each line...
        {
            var r=""; // current line

            for(i=-2*m-1;++i<2*m-(y=j<0?-j-1:j);) // for each char...
                r+="/\\_- "[// append something to the current line
                (x=i<0?-i-1:i)>y&(x+=y)%2>0&x/2<m&&I.Contains(x/2+1)?
                    (i^j)&1: // slashes as appropriate - I can't work out why this bit works, but it seems to
                x-y<(y=j<0?-j:j)&y<=m&I.Contains(y)?
                    j<0?2:3: // _ or - if required
                4]; // otherwise a space

            System.Console.WriteLine(r); // print current line
        }
    }
}

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