상자에 ASCII 상자 그리기


23

문제

주어진 입력 a,b,c

a,b,c양의 짝수 정수는 어디 입니까?

a > b > c

치수가 허용 된 문자로 상자를 만듭니다. a x a

허용되는 다른 문자의 상자를 b x b이전 크기 내에서 가운데에 맞 춥니 다

허용되는 다른 문자의 상자를 c x c이전에 치수로 가운데에 맞 춥니 다.

허용되는 문자는 ASCII 문자입니다 [a-zA-z0-9!@#$%^&*()+,./<>?:";=_-+]

입력 a=6, b=4, c=2

######
#****#
#*@@*#
#*@@*#
#****#
######

입력 a=8, b=6, c=2

########
#******#
#******#
#**@@**#
#**@@**#
#******#
#******#
########

입력 a=12, b=6, c=2

############
############
############
###******###
###******###
###**@@**###
###**@@**###
###******###
###******###
############
############
############

규칙

  • 최단 코드 승리
  • 주어진 범위 내에서 인쇄 할 문자를 선택할 수 있습니다.
  • 후행 줄 바꿈 허용
  • 후행 공백 허용
  • 함수는 줄 바꿈, 문자열 배열을 사용하여 문자열을 반환하거나 인쇄 할 수 있습니다

5
입력이 항상 유효합니까 (즉, 각 숫자가 이전 숫자보다 2보다 작습니다)? 그리고 대칭 적 인 그림을 보장하기 위해 숫자는 항상 (모두) 또는 (홀수)입니까?
산란

Show tree ring age 와 매우 유사합니다 .
manatwork

1
@Christian 처음 3 줄은 이러한 요구 사항을 정의합니다. 충분한 지 알려주십시오.
LiefdeWen

@StefanDelport 당신이 맞아요. 감사.
산란

답변:



7

젤리 ,  20  19 바이트

`아웃 골퍼 Erik이 제안한 것처럼 링크를 피하기 위해 quick 을 사용하는 -1 바이트 .

H»þ`€Ḣ>ЀHSUṚm€0m0Y

실제로 ...를 [a,b,c]사용하여 상자를 인쇄 하는 목록을 가져 오는 전체 프로그램 a:2 b:1 c:0
은 최대 10 상자 까지 작동 하며 가장 안쪽 상자 0( :) 입니다.

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

방법?

H»þ`€Ḣ>ЀHSUṚm€0m0Y - Main link: list of boxes, B = [a, b, c]
H                   - halve B = [a/2, b/2, c/2]
    €               - for €ach:
   `                -   repeat left argument as the right argument of the dyadic operation:
  þ                 -     outer product with the dyadic operation:
 »                  -       maximum
                    - ... Note: implicit range building causes this to yield
                    -       [[max(1,1),max(1,2),...,max(1,n)],
                    -        [max(2,1),max(2,2),...,max(2,n)],
                    -        ...
                    -        [max(n,1),max(n,2),...,max(n,n)]]
                    -       for n in [a/2,b/2,c/2]
     Ḣ              - head (we only really want n=a/2 - an enumeration of a quadrant)
         H          - halve B = [a/2, b/2, c/2]
       Ѐ           - map across right with dyadic operation:
      >             -   is greater than?
                    - ...this yields three copies of the lower-right quadrant
                    -    with 0 if the location is within each box and 1 if not
          S         - sum ...yielding one with 0 for the innermost box, 1 for the next, ...
           U        - upend (reverse each) ...making it the lower-left
            Ṛ       - reverse ...making it the upper-right
             m€0    - reflect €ach row (mod-index, m, with right argument 0 reflects)
                m0  - reflect the rows ...now we have the whole thing with integers
                  Y - join with newlines ...making a mixed list of integers and characters
                    - implicit print - the representation of a mixed list is "smashed"

7

파이썬 2, 107103 바이트

a,b,c=input()
r=range(1-a,a,2)
for y in r:
 s=''
 for x in r:m=max(x,y,-x,-y);s+=`(m>c)+(m>b)`
 print s

전체 프로그램과 함께 상자를 인쇄 a=2, b=1,c=0

목록 이해 (104 바이트)와 함께 약간 더 나쁜 대답 :

a,b,c=input()
r=range(1-a,a,2)
for y in r:print''.join(`(m>c)+(m>b)`for x in r for m in[max(x,y,-x,-y)])

5

C #, 274232 바이트

using System.Linq;(a,b,c)=>{var r=new string[a].Select(l=>new string('#',a)).ToArray();for(int i=0,j,m=(a-b)/2,n=(a-c)/2;i<b;++i)for(j=0;j<b;)r[i+m]=r[i+m].Remove(j+m,1).Insert(j+++m,i+m>=n&i+m<n+c&j+m>n&j+m<=n+c?"@":"*");return r;}

C #조차도 끔찍하기 때문에 확실히 골프를 칠 수는 있지만 마음이 비어 있습니다.

풀 / 포맷 버전 :

using System;
using System.Linq;

class P
{
    static void Main()
    {
        Func<int, int, int, string[]> f = (a,b,c) =>
        {
            var r = new string[a].Select(l => new string('#', a)).ToArray();

            for (int i = 0, j, m = (a - b) / 2, n = (a - c) / 2; i < b; ++i)
                for (j = 0; j < b;)
                    r[i + m] = r[i + m].Remove(j + m, 1).Insert(j++ + m,
                        i + m >= n & i + m < n + c &
                        j + m > n & j + m <= n + c ? "@" : "*");

            return r;
        };

        Console.WriteLine(string.Join("\n", f(6,4,2)) + "\n");
        Console.WriteLine(string.Join("\n", f(8,6,2)) + "\n");
        Console.WriteLine(string.Join("\n", f(12,6,2)) + "\n");

        Console.ReadLine();
    }
}

당신은 당신의 마음을 되찾은 것처럼 보일 j + m <= n + c수 있습니다 n + c > j + m
LiefdeWen

그럼만큼 i + m >= nn < i + m
LiefdeWen

i+m4 번 을 사용 하므로 변수 for를 저장하기 위해 변수에 추가 할 수 있습니다.
LiefdeWen

이것들을 제대로 점검하지는 않았지만 : 당신 i은 고립 된 상태로 사용하지 않고 단지 초기화 i=m하고 비교하십시오 i<b+m; 나 ... 그냥 사용 i, 초기화 i=0에 있지만, 루프 i<a, 후 추가 r[i]=new string('#',a),다음에 j=0, 체크에 조건을 추가하기 i위한 경계 내에 j(이 당신이 모든 Linq를 잃게하기 때문에, 돈을 지불한다고)의 루프.
VisualMelon


3

자바 스크립트 (ES6), 174 (170) 147 바이트

a=>b=>c=>(d=("#"[r="repeat"](a)+`
`)[r](f=a/2-b/2))+(e=((g="#"[r](f))+"*"[r](b)+g+`
`)[r](h=b/2-c/2))+(g+(i="*"[r](h))+"@"[r](c)+i+g+`
`)[r](c)+e+d

시도 해봐

fn=
a=>b=>c=>(d=("#"[r="repeat"](a)+`
`)[r](f=a/2-b/2))+(e=((g="#"[r](f))+"*"[r](b)+g+`
`)[r](h=b/2-c/2))+(g+(i="*"[r](h))+"@"[r](c)+i+g+`
`)[r](c)+e+d
oninput=_=>+x.value>+y.value&&+y.value>+z.value&&(o.innerText=fn(+x.value)(+y.value)(+z.value))
o.innerText=fn(x.value=12)(y.value=6)(z.value=2)
label,input{font-family:sans-serif;}
input{margin:0 5px 0 0;width:50px;}
<label for=x>a: </label><input id=x min=6 type=number step=2><label for=y>b: </label><input id=y min=4 type=number step=2><label for=z>c: </label><input id=z min=2 type=number step=2><pre id=o>


설명

a=>b=>c=>            :Anonymous function taking the 3 integers as input via parameters a, b & c
(d=...)              :Assign to variable d...
("#"[r="repeat"](a)  :  # repeated a times, with the repeat method aliased to variable r in the process.
+`\n`)               :  Append a literal newline.
[r](f=a/2-b/2)       :  Repeat the resulting string a/2-b/2 times, assigning the result of that calculation to variable f.
+                    :Append.
(e=...)              :Assign to variable e...
(g=...)              :  Assign to variable g...
"#"[r](f)            :    # repeated f times.
+"*"[r](b)           :  Append * repeated b times.
+g+`\n`)             :  Append g and a literal newline.
[r](h=b/2-c/2)       :  Repeat the resulting string b/2-c/2 times, assigning the result of that calculation to variable h.
+(...)               :Append ...
g+                   :  g
(i=...)              :  Assign to variable i...
"*"[r](h)            :    * repeated h times.
+"@"[r](c)           :  @ repeated c times
+i+g+`\n`)           :  Append i, g and a literal newline.
[r](c)               :...repeated c times.
+e+d                 :Append e and d.


2

V , 70, 44 , 42 바이트

Àé#@aÄÀG@b|{r*ÀG@c|{r@òjdòÍ.“.
ç./æ$pYHP

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

이것은 끔찍하다. 와우. 훨씬 낫다. 그럼에도 불구하고,하지만 적어도하지 짧은 다소 golfy.

@ nmjmcman101 덕분에 2 바이트를 절약했습니다!

16 진 덤프 :

00000000: c0e9 2340 61c4 c047 4062 7c16 7b72 2ac0  ..#@a..G@b|.{r*.
00000010: 4740 637c 167b 7240 f26a 64f2 cd2e 932e  G@c|.{r@.jd.....
00000020: 0ae7 2e2f e624 7059 4850                 .../.$pYHP

마지막 두 줄을 결합하여 2 바이트를 절약 할 수 있습니다. 온라인으로 사용해보십시오!
nmjcman101 2016 년

@ nmjcman101 아, 좋은 지적입니다. 감사!
DJMcMayhem


1

매스 매 티카, 49 바이트

Print@@@Fold[#~CenterArray~{#2,#2}+1&,{{}},{##}]&

입력을 [c, b, a]받습니다. 출력은a=1, b=2, c=3 입니다.

방법?

Print@@@Fold[#~CenterArray~{#2,#2}+1&,{{}},{##}]&
                                                &  (* Function *)
        Fold[                        ,{{}},{##}]   (* Begin with an empty 2D array.
                                                      iterate through the input: *)
                                    &              (* Function *)
             #~CenterArray~{#2,#2}                 (* Create a 0-filled array, size
                                                      (input)x(input), with the array
                                                      from the previous iteration
                                                      in the center *)
                                  +1               (* Add one *)
Print@@@                                           (* Print the result *)

@Jenny_mathy에서 질문 :. * 함수는 개행 문자, 문자열 배열로 문자열을 반환하거나 인쇄 할 수있다 "는 Grid가되지 않습니다 String도 그것을 수행 Print을.
JungHwan 최소

0

PHP> = 7.1, 180 바이트

이 경우 변수 $는 PHP에서 시작하는 것이 싫어

for([,$x,$y,$z]=$argv;$i<$x*$x;$p=$r%$x)echo XYZ[($o<($l=$x-$a=($x-$y)/2)&$o>($k=$a-1)&$p>$k&$p<$l)+($o>($m=$k+$b=($y-$z)/2)&$o<($n=$l-$b)&$p>$m&$p<$n)],($o=++$i%$x)?"":"\n".!++$r;

PHP 샌드 박스 온라인


이 경우 인쇄 전 페인트 가 훨씬 짧습니다. : D 아니면 $argv배열로 사용하기 때문 입니까? 당신은 그것을 시도 했습니까? 별도의 삼항을 사용해 보셨습니까?
Titus

@Titus 몰라요하지만 내 접근 방식은 잘못된 홀수의 입력을 수정합니다.
Jörg Hülsermann

0

수학, 173 바이트

(d=((a=#1)-(b=#2))/2;e=(b-(c=#3))/2;z=1+d;x=a-d;h=Table["*",a,a];h[[z;;x,z;;x]]=h[[z;;x,z;;x]]/.{"*"->"#"};h[[z+e;;x-e,z+e;;x-e]]=h[[z+e;;x-e,z+e;;x-e]]/.{"#"->"@"};Grid@h)&

입력

[12,6,2]


0

파이썬 2 , 87 바이트

a,_,_=t=input();r=~a
exec"r+=2;print sum(10**x/9*10**((a-x)/2)*(r*r<x*x)for x in t);"*a

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

형식의 숫자를 추가하여 인쇄 할 숫자를 산술적으로 계산합니다 111100. 추악함이 많이 있으며 아마도 개선의 여지가 있습니다.


0

자바 8, 265252 바이트

 a->b->c->{int r[][]=new int[a][a],x=0,y,t;for(;x<a;x++)for(y=0;y<a;r[x][y++]=0);for(t=(a-b)/2,x=t;x<b+t;x++)for(y=t;y<b+t;r[x][y++]=1);for(t=(a-c)/2,x=t;x<c+t;x++)for(y=t;y<c+t;r[x][y++]=8);String s="";for(int[]q:r){for(int Q:q)s+=Q;s+="\n";}return s;}

문자를 숫자로 바꾸어 -13 바이트

다른 접근법을 사용하여 확실히 골프를 칠 수 있습니다.

설명:

여기에서 시도하십시오.

a->b->c->{                         // Method with three integer parameters and String return-type
  int r[][]=new int[a][a],         //  Create a grid the size of `a` by `a`
      x=0,y,t;                     //  Some temp integers
  for(;x<a;x++)for(y=0;y<a;r[x][y++]=0);
                                   //  Fill the entire grid with zeros
  for(t=(a-b)/2,x=t;               //  Start at position `(a-b)/2` (inclusive)
      x<b+t;x++)                   //  to position `b+((a-b)/2)` (exclusive)
    for(y=t;y<b+t;r[x][y++]=1);    //   And replace the zeros with ones
  for(t=(a-c)/2,x=t;               //  Start at position `(a-c)/2` (inclusive)
      x<c+t;x++)                   //  to position `c+((a-b)/2)` (exclusive)
    for(y=t;y<c+t;r[x][y++]=8);    //   And replace the ones with eights
  String s="";                     //  Create a return-String
  for(int[]q:r){                   //  Loop over the rows
    for(int Q:q)                   //   Inner loop over the columns
      s+=Q;                        //    and append the result-String with the current digit
                                   //   End of columns-loop (implicit / single-line body)
    s+="\n";                       //   End add a new-line after every row
  }                                //  End of rows-loop
  return s;                        //  Return the result-String
}                                  // End of method

0

자바 스크립트 (ES6), 112

여러 줄 문자열을 반환하는 익명 함수 문자 0,1,2

(a,b,c)=>eval("for(o='',i=-a;i<a;o+=`\n`,i+=2)for(j=-a;j<a;j+=2)o+=(i>=c|i<-c|j>=c|j<-c)+(i>=b|i<-b|j>=b|j<-b)")

덜 골프

(a,b,c)=>{
  for(o='',i=-a;i<a;o+=`\n`,i+=2)
    for(j=-a;j<a;j+=2)
      o+=(i>=c|i<-c|j>=c|j<-c)+(i>=b|i<-b|j>=b|j<-b)
  return o
}  

var F=
(a,b,c)=>eval("for(o='',i=-a;i<a;o+=`\n`,i+=2)for(j=-a;j<a;j+=2)o+=(i>=c|i<-c|j>=c|j<-c)+(i>=b|i<-b|j>=b|j<-b)")

function update()
{
  var [a,b,c]=I.value.match(/\d+/g)
  O.textContent=F(a,b,c)
}

update()
  
a,b,c <input id=I value='10 6 2' oninput='update()'>
<pre id=O></pre>


0

PHP> = 5.6, 121 바이트

for($r=A;$p?:$p=($z=$argv[++$i])**2;)$r[((--$p/$z|0)+$o=($w=$w?:$z)-$z>>1)*$w+$p%$z+$o]=_BCD[$i];echo chunk_split($r,$w);

온라인으로 실행 -nr하거나 테스트하십시오 .

루프를 다시 결합 ... 나는 그들을 사랑 해요!

고장

for($r=A;                           # initialize $r (result) to string
    $p?:$p=($z=$argv[++$i])**2;)    # loop $z through arguments, loop $p from $z**2-1 to 0
    $r[((--$p/$z|0)+$o=
        ($w=$w?:$z)                     # set $w (total width) to first argument
        -$z>>1)*$w+$p%$z+$o]            # calculate position: (y+offset)*$w+x+offset
        =_BCD[$i];                      # paint allowed character (depending on $i)
echo chunk_split($r,$w);            # insert newline every $w characters and print
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.