Narysuj pola ASCII w polach

23

Problem

podany wkład a,b,c

gdzie a,b,cdodatnie są nawet liczby całkowite

i a > b > c

Zrób pudełko dowolnej dozwolonej postaci o wymiarach a x a

Wyśrodkuj pole innego dozwolonego znaku z wymiarami b x bw poprzednim

Wyśrodkuj pole innej dozwolonej postaci o wymiarach c x c w poprzednim

Dozwolone znaki to znaki ASCII [a-zA-z0-9!@#$%^&*()+,./<>?:";=_-+]

Wkład a=6, b=4, c=2

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

Wkład a=8, b=6, c=2

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

Wkład a=12, b=6, c=2

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

Zasady

  • Najkrótszy kod wygrywa
  • Pamiętaj, że możesz wybrać, który znak ma zostać wydrukowany w podanym zakresie
  • Końcowe znaki nowej linii są akceptowane
  • Akceptowane końcowe znaki odstępu
  • funkcje mogą zwracać ciąg znaków z nowymi liniami, tablicę ciągów lub drukować go
LiefdeWen
źródło
5
Czy dane wejściowe zawsze będą prawidłowe (tj. Każda liczba jest co najmniej 2 mniejsza niż poprzednia)? I czy liczby zawsze będą (wszystkie parzyste) czy (wszystkie nieparzyste), aby zapewnić symetryczne rysowanie?
rozproszyć
Całkiem podobny do wieku wiekowego pierścieni drzew .
manatwork
1
@Christian pierwsze 3 wiersze określają te wymagania, daj mi znać, jeśli są wystarczające.
LiefdeWen
@StefanDelport Masz rację, tęskniłem. Dzięki.
rozproszyć

Odpowiedzi:

7

Galaretka ,  20  19 bajtów

-1 bajt za pomocą szybkiego, `aby ominąć link, jak sugeruje Erik the Outgolfer.

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

Pełny program pobierający listę [a,b,c]drukującą skrzynki przy użyciu a:2 b:1 c:0
... w rzeczywistości, tak jak jest, będzie działał dla maksymalnie 10 skrzynek, gdzie znajduje się najbardziej wewnętrzna skrzynka 0( na przykład ).

Wypróbuj online!

W jaki sposób?

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"
Jonathan Allan
źródło
7

Python 2, 107 103 bajtów

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

Pełny program, drukuje pudełka z a=2,b=1 ,c=0

Nieco gorsza odpowiedź ze zrozumieniem listy (104 bajty):

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)])
TFeld
źródło
5

C #, 274 232 bajty

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;}

Straszne nawet dla C #, więc zdecydowanie można grać w golfa, ale mój umysł stał się pusty.

Wersja pełna / sformatowana:

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();
    }
}
TheLethalCoder
źródło
j + m <= n + cn + c > j + m
Wygląda
Jak również wtedy gdy i + m >= nnan < i + m
LiefdeWen
używasz i+m4 razy, więc możesz dodać ją do zmiennej w swoim, foraby zaoszczędzić
LiefdeWen
Nie sprawdziłem ich poprawnie, ale: nigdy nie używasz iw izolacji, po prostu inicjuj i=mi porównuj i<b+m; lub ... po prostu użyj i, init, i=0ale zapętl i<a, a następnie dodaj r[i]=new string('#',a),obok j=0i dodaj warunek, aby sprawdzić, czy pętla imieści się w granicach jpętli (to powinno się spłacić, ponieważ stracisz całe Linq).
VisualMelon
3

Haskell , 126 bajtów

f a b c=r[r["#*@"!!(v c+v b)|x<-[1..d a],let v k|x>a#k&&y>a#k=1|2>1=0]|y<-[1..d a]]where r x=x++reverse x;d=(`div`2);x#y=d$x-y

Wypróbuj online!

bartavelle
źródło
3

JavaScript (ES6), 174 170 147 bajtów

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

Spróbuj

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>


Wyjaśnienie

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.
Kudłaty
źródło
2

C (gcc) , 97 bajtów

x,y;f(a,b,c){for(y=1-a;y<a;y+=2,puts(""))for(x=1-a;x<a;x+=2)printf(x/c|y/c?x/b|y/b?"#":"*":"@");}

Wypróbuj online!

Kritixi Lithos
źródło
2

V , 70, 44 , 42 bajtów

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

Wypróbuj online!

To jest ohydne. Eww. Dużo lepiej. Nadal nie najkrótszy, ale przynajmniej nieco golfowy.

Zaoszczędzono dwa bajty dzięki @ nmjmcman101!

Hexdump:

00000000: c0e9 2340 61c4 c047 4062 7c16 7b72 2ac0  ..#@a..G@b|.{r*.
00000010: 4740 637c 167b 7240 f26a 64f2 cd2e 932e  G@c|.{[email protected].....
00000020: 0ae7 2e2f e624 7059 4850                 .../.$pYHP
DJMcMayhem
źródło
Możesz połączyć ostatnie dwa wiersze w celu zaoszczędzenia dwóch bajtów Wypróbuj online!
nmjcman101
@ nmjcman101 Ah, dobry punkt. Dzięki!
DJMcMayhem
1

Mathematica, 49 bajtów

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

Pobiera dane wejściowe [c, b, a]. Dane wyjściowe to a=1, b=2, c=3.

W jaki sposób?

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 *)
JungHwan Min
źródło
@Jenny_mathy W pytaniu: * funkcje mogą zwracać ciąg znaków z nowymi znakami, tablicę ciągów lub drukować. ” GridNie robi Stringani nie robi Print.
JungHwan Min
0

PHP> = 7,1, 180 bajtów

W tym przypadku nienawidzę, że zmienne zaczynają się od $w 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 Sandbox Online

Jörg Hülsermann
źródło
W takim przypadku farba przed drukowaniem jest znacznie krótsza. : D A może dlatego, że używam $argvjako tablicy? Próbowałeś tego? Czy próbowałeś osobnych trójskładników?
Titus
@Titus Nie wiem, ale moja poprawka wprowadza nieprawidłowe liczby nieparzyste
Jörg Hülsermann
0

Mathematica, 173 bajty

(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)&

wkład

[12,6,2]

J42161217
źródło
0

Python 2 , 87 bajtów

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

Wypróbuj online!

Arytmetycznie oblicza liczby do wydrukowania przez dodanie liczb formularza 111100 . Jest dużo brzydoty, prawdopodobnie miejsce na poprawę.

xnor
źródło
0

Java 8, 265 252 bajtów

 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 bajtów poprzez zastąpienie znaków cyframi.

Można zdecydowanie zagrać w golfa, stosując inne podejście.

Wyjaśnienie:

Wypróbuj tutaj.

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
Kevin Cruijssen
źródło
0

JavaScript (ES6), 112

Anonimowa funkcja zwracająca ciąg wielu linii. Znaki 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)")

Mniej golfa

(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>

edc65
źródło
0

PHP> = 5,6, 121 bajtów

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);

Uruchom go -nrlub przetestuj online .

Połączone pętle ponownie ... Kocham je!

awaria

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
Tytus
źródło