Mapa de altura de cajas

22

Eche un vistazo a este diagrama de arte ascii de varias cajas:

+--------------------------------------------------------------+
|                                                              |
|   +-------------------------------+          +-------+       |
|   |                               |          |       |       |
|   |                               |          |       |       |
|   |     +----------------+        |          |       |       |
|   |     |                |        |          +-------+       |
|   |     |                |        |                          |
|   |     |                |        |          +-------+       |
|   |     +----------------+        |          |       |       |
|   |                               |          |       |       |
|   |                               |          |       |       |
|   +-------------------------------+          +-------+       |
|                                                              |
+--------------------------------------------------------------+

Cada cuadro se forma con caracteres de tubería para las partes verticales ( |), guiones para las partes horizontales ( -) y más para las esquinas ( +).

El diagrama también muestra cuadros dentro de otros cuadros. Llamaremos al número de cajas que contiene una caja dentro de la capa de esa caja . Aquí está el diagrama nuevamente con la capa de cada cuadro anotado:

+--------------------------------------------------------------+
|                                                              |
|   +-------------------------------+          +-------+       |
|   |                               |          |       |       |
|   |                               |          |   1   |       |
|   |     +----------------+        |          |       |       |
|   |     |                |        |    0     +-------+       |
|   |     |        2       |   1    |                          |
|   |     |                |        |          +-------+       |
|   |     +----------------+        |          |       |       |
|   |                               |          |   1   |       |
|   |                               |          |       |       |
|   +-------------------------------+          +-------+       |
|                                                              |
+--------------------------------------------------------------+

Su programa tomará un diagrama de caja similar al que está en la parte superior como entrada. Como salida, su programa debería generar el diagrama de caja con:

  • El cuadro en la capa 0 debe llenarse con el carácter #(NB: solo habrá un cuadro en la capa 0);
  • Las casillas de la capa 1 deben llenarse con el personaje =;
  • Las casillas en la capa 2 deben llenarse con el personaje -;
  • Las casillas de la capa 3 deben llenarse con el personaje .;
  • Las casillas de la capa 4 y superiores no deben llenarse.

Así es como debería verse la salida de la entrada de ejemplo:

+--------------------------------------------------------------+
|##############################################################|
|###+-------------------------------+##########+-------+#######|
|###|===============================|##########|=======|#######|
|###|===============================|##########|=======|#######|
|###|=====+----------------+========|##########|=======|#######|
|###|=====|----------------|========|##########+-------+#######|
|###|=====|----------------|========|##########################|
|###|=====|----------------|========|##########+-------+#######|
|###|=====+----------------+========|##########|=======|#######|
|###|===============================|##########|=======|#######|
|###|===============================|##########|=======|#######|
|###+-------------------------------+##########+-------+#######|
|##############################################################|
+--------------------------------------------------------------+

Aquí hay otra entrada y salida que muestra las capas 3, 4 y 5. Observe las líneas horizontales en la parte superior que están muy juntas. En estos casos, no hay suficiente espacio para llenar ningún personaje allí.

+-----------------------------------------------------------------------+
|     +--------------------------------------------------------------+  |
|     |      +-----------------------------------------------------+ |  |
|     |      |         +-----------------------------------------+ | |  |
|     |      |         |           +---------------------------+ | | |  |
|     |      |         |           |         +-------------+   | | | |  |
|     |      |         |           |         |             |   | | | |  |
|     |      |         |           |         +-------------+   | | | |  |
|     |      |         |           +---------------------------+ | | |  |
|     |      |         |                                         | | |  |
|     |      |         +-----------------------------------------+ | |  |
|     |      |                                                     | |  |
|     |      |                                                     | |  |
|     |      +-----------------------------------------------------+ |  |
|     |                                                              |  |
|     +--------------------------------------------------------------+  |
|                                                                       |
|                                                                       |
|                                                                       |
+-----------------------------------------------------------------------+

La salida:

+-----------------------------------------------------------------------+
|#####+--------------------------------------------------------------+##|
|#####|======+-----------------------------------------------------+=|##|
|#####|======|---------+-----------------------------------------+-|=|##|
|#####|======|---------|...........+---------------------------+.|-|=|##|
|#####|======|---------|...........|         +-------------+   |.|-|=|##|
|#####|======|---------|...........|         |             |   |.|-|=|##|
|#####|======|---------|...........|         +-------------+   |.|-|=|##|
|#####|======|---------|...........+---------------------------+.|-|=|##|
|#####|======|---------|.........................................|-|=|##|
|#####|======|---------+-----------------------------------------+-|=|##|
|#####|======|-----------------------------------------------------|=|##|
|#####|======|-----------------------------------------------------|=|##|
|#####|======+-----------------------------------------------------+=|##|
|#####|==============================================================|##|
|#####+--------------------------------------------------------------+##|
|#######################################################################|
|#######################################################################|
|#######################################################################|
+-----------------------------------------------------------------------+

Otra entrada, esta vez con las líneas verticales juntas también:

+-------------+
|+-----------+|
||           ||
||           ||
||           ||
|+-----------+|
+-------------+

La salida:

+-------------+
|+-----------+|
||===========||
||===========||
||===========||
|+-----------+|
+-------------+

Notas adicionales

  • Puede haber espacios en blanco alrededor del cuadro más externo.
  • Las cajas no pueden tener un ancho o una altura interna de 0 (por lo que siempre tendrán algo de espacio dentro de ellas)
  • Las cajas en la misma capa pueden tocarse entre sí.
Ajenjo
fuente

Respuestas:

3

Rubí 163 164

w=l=-1
x=$<.map{|l|w=l.size;l}.join
b=[]
x.size.times{|i|c=x[i]
x[i..i+1]=='+-'&&(x[i+w]!=?|?b-=[i%w]:b<<i%w)
c>?z&&l+=b&[i%w]!=[]?1:-1
$><<(c==' '&&'#=-.'[l]||c)}

Pruebe en línea: caso de prueba # 1 , caso de prueba # 2 .

El programa no golfista:

  # read all lines from STDIN
  input = $<.map{|l|l}.join
  width = input.index(?\n)+1

  box_left_margins = []
  current_layer = -1

  input.size.times{|i|
    c = input[i]

    if c == ?+ && input[i+1] == ?-
      #we're at a box's left margin
      if input[i+width] == ?|
        # we're at the box's top - mark this index as a left margin
        box_left_margins << i%width
      else
        # we're at the box's bottom - this index is no longer a left margin
        box_left_margins-=[i%width]
      end
    end

    if c == ?|
      if box_left_margins.include? (i%width)
        current_layer += 1
      else
        current_layer -= 1
      end
    end

    if c == ' '
      $><< ('#=-.'[current_layer]||' ')
    else
      $><<c
    end
  }
Cristian Lupascu
fuente
2

Java, 476 466 bytes

import java.util.*;class H{public static void main(String[]a){Scanner p=new Scanner(System.in);char[]l=p.nextLine().toCharArray(),d={'#','=','-','.'};int s=l.length,b,i;int[]m=new int[s];String o=new String(l);for(;;){o+='\n';l=p.nextLine().toCharArray();if(l[0]=='+')break;o+='|';b=0;for(i=1;i<s;++i){char c=l[i];switch(c){case' ':c=b>3?' ':d[b];break;case'+':m[i]=l[i-1]=='-'?-++m[i]:- --m[i];break;case'|':b+=m[i];}o+=c;}}o+=new String(l);System.out.println(o);}}

Esto lee la primera línea para determinar el ancho (s) del cuadro más externo. Con esto mantiene un conjunto de longitud s. Esta matriz almacena de izquierda a derecha donde los cuadros comienzan y terminan y se inicializa con 0s. También almacena la altura de la caja.

El programa lee la entrada línea por línea y observa los siguientes caracteres:

  • '+' es, como sabemos, el borde de una caja. Si el carácter de entrada a la izquierda es un '-', es el final del cuadro, de lo contrario es el comienzo. La matriz de marcadores se actualiza de la siguiente manera:
    • Si el marcador en este índice es 0, establezca el valor en 1 (principio) o -1 (final).
    • De lo contrario, establezca el valor en 0. (Llegamos al final del cuadro, ya no es importante)
  • '|' cambia la altura del cuadro actual por el marcador en el índice actual.
  • '' Cada carácter obtiene la salida como estaba, excepto los espacios en blanco, que se reemplazan de acuerdo con la altura de la caja actual.

Editar: Gracias a TheNumberOne por la sugerencia. También reemplacé while (verdadero) con for (;;).

ECS
fuente
1
Puede reemplazar import java.util.Scannerconimport java.util.*
TheNumberOne
2

CJam, 114 111 108 104 103 102 98 bytes

q"-+":R/Ws*N/z{_,{"|1"/Bs*}*}%z{_,,{_I=S&{_I>_1sf&s,\"|+"f&s,m5e<" #=2."=I\t}&}fI}%N*Ws/R*Cs"|-"er

Pruébelo en línea en el intérprete de CJam .

Cómo funciona

q               e# Read all input from STDIN.
"-+":R/Ws*      e# Replace each "-+" with "-1".
N/z             e# Split at linefeeds and zip. Pushes the array of columns.
{               e# For each column:
  _,            e#   Push its length.
  {             e#   Do that many times:
    "|1"/Bs*    e#   Replace each "|1" with "11".
  }*            e#
}%              e#
z               e# Transpose. Goes back to array of rows.
{               e# For each row:
  _,,           e#   Push the array of its indexes.
  {             e#   For each index I:
    _I=         e#     Get the Ith character of the row.
    S&{         e#     If it is a space:
      _I>       e#       Get the characters after the Ith.
      _1sf&s,   e#       Count how many characters are 1's.
      \"|+"f&s, e#       Count how many are |'s or +'s.
      m5e<      e#       Subtract and truncate at 5.
      " #=2."=  e#       Retrieve the corresponding character.
      I\t       e#       Replace the Ith character of the row with that one.
    }&          e#
  }fI           e#
}%              e#
N*              e# Join the rows, separating by linefeeds.
Ws/R*           e# Turn "-1"s back to "-+"s.
Cs"|-"er        e# Turn 1's and 2's into |'s and -'s.
Dennis
fuente
2

JavaScript ( ES6 ) 156

Ejecute el fragmento en Firefox para probar

F=b=>(
  r=b.split(/\n/),q=[n=0],
  r.map((r,i)=>(
    [...r].map((c,p)=>c=='+'?(q[p]=r[p-1]=='-'?-1:1,c):c<'!'?' #=-.'[n]||' ':((n+=q[p]|0),c)).join(''))
  ).join('\n')
)

// TEST

o=x=>O.innerHTML += x+'\n\n'


;[`+--------------------------------------------------------------+
|                                                              |
|   +-------------------------------+          +-------+       |
|   |                               |          |       |       |
|   |                               |          |       |       |
|   |     +----------------+        |          |       |       |
|   |     |                |        |          +-------+       |
|   |     |                |        |                          |
|   |     |                |        |          +-------+       |
|   |     +----------------+        |          |       |       |
|   |                               |          |       |       |
|   |                               |          |       |       |
|   +-------------------------------+          +-------+       |
|                                                              |
+--------------------------------------------------------------+`
,`+-----------------------------------------------------------------------+
|     +--------------------------------------------------------------+  |
|     |      +-----------------------------------------------------+ |  |
|     |      |         +-----------------------------------------+ | |  |
|     |      |         |           +---------------------------+ | | |  |
|     |      |         |           |         +-------------+   | | | |  |
|     |      |         |           |         |             |   | | | |  |
|     |      |         |           |         +-------------+   | | | |  |
|     |      |         |           +---------------------------+ | | |  |
|     |      |         |                                         | | |  |
|     |      |         +-----------------------------------------+ | |  |
|     |      |                                                     | |  |
|     |      |                                                     | |  |
|     |      +-----------------------------------------------------+ |  |
|     |                                                              |  |
|     +--------------------------------------------------------------+  |
|                                                                       |
|                                                                       |
|                                                                       |
+-----------------------------------------------------------------------+`
,`+-------------+
|+-----------+|
||           ||
||           ||
||           ||
|+-----------+|
+-------------+`  
].forEach(t=>o(t+'\n'+F(t)+'\n'))
pre { font-size:10px;}
<pre id=O></pre>

edc65
fuente
1

CJam, 76 74 bytes

q:Q"-+":R/Ws*{_"| "#"]_QN#~%'|m0='+=2*(U+:U+~; \"#=-.\"+U5e<= "S/=~}%Ws/R*

Pruébelo en línea en el intérprete de CJam .

Cómo funciona

q:Q        e# Read all input from STDIN and save it in the variable Q.
"-+":R/Ws* e# Replace each "-+" with "-1".
           e# This allows us to easily keep track of right corners.
{          e# For each charcter in the modified input:
  _"| "#   e#   Push its index in the string (0 for '|', 1 for ' ', -1 otherwise).

  "]_QN#~%'|m0='+=2*(U+:U+~; \"#=-.\"+U5e<= "S/

           e#   Split the pushed string at spaces, which results in three chunks:

           e#     ]        Turn the entire stack into a string.
           e#     _QN#     Compute the first index of a linefeed (row length).
           e#     ~%       Retrieve every previous character in the current column,
           e#              starting with the last.
           e#     '|m0=    Get the first character that is not a vertical bar.
           e#     '+=2*(   Push 1 if it's a plus sign and -1 otherwise.
           e#     U+:U     Add to U (initially 0) to keep track of the layer.
           e#     +~;      Add U to the string (casts to Array), dump and discard U.

           e#     "#=-."+  Concatenate this string with the space on the stack.
           e#     U5e<     Truncate U at 5.
           e#     =        Retrieve the corresponding character to replace the space.

           e#     (empty)

  =~       e#   Select and execute the proper chunk.
}%         e#
Ws/R*      e# Replace each "-1" with "-+".
Dennis
fuente
1

APL (Dyalog Unicode) , SBCS de 50 bytes

s[⊃¨0~¨⍨a5|5⌊+⍀+\(⊢ׯ1*+⍀++\)5=a←⎕⍳⍨s' #=-.+|']

Pruébalo en línea!

s←' #=-.+|' asignar una cadena a variable s

entrada evaluada, debe ser una matriz de caracteres

⎕⍳⍨sreemplazar cada elemento de con su índice ens

a← asignar a a

5=devolver una matriz booleana de donde están los +-es a( s[5]es '+')

(⊢ׯ1*+⍀++\)Este es un tren de funciones:

  • +\ matriz de sumas parciales por fila

  • + más

  • +⍀ matriz de sumas parciales por columna

  • ¯1* uno negativo al poder de - convierte las probabilidades en ¯1 y unifica en 1

  • ⊢× multiplique por el argumento del tren: ponga a cero todo excepto las esquinas de la caja

+⍀+\ sumas parciales por columna de sumas parciales por fila

5⌊ mínimo de eso y 5

5| módulo 5

a,¨emparejar los elementos de ay de la matriz actual

0~¨⍨ eliminar 0 de los pares

⊃¨ primero cada uno de lo que queda

s[ ] usar cada elemento como índice en s

ngn
fuente
¡Oh no!
Erik the Outgolfer
@EriktheOutgolfer No hay que preocuparse, la respuesta es correcta :) La expresión que prepara el argumento (mezcla líneas de entrada sin formato en una matriz) debe revertirlo porque ↑⍞⍞...⍞evalúa de derecha a izquierda. Para el primer ejemplo no importó y olvidé mencionar esto.
ngn
@EriktheOutgolfer ah, ya veo ... Eliminaré la respuesta ahora y la arreglaré más tarde. Gracias.
ngn
debería arreglarse ahora
ngn
0

> <> , 118115 87 bytes

]0{i:0(?;:"-"=?\:"+"=?\:" "=?\$3l$g+}:ob(?
~$?:g2.10p1+4f:<p3l+10/.16@:$/>.!0"#"$
 #=-.

Pruébalo en línea!

Si uno de los símbolos no fuera un, -entonces esto podría ser 6 bytes más corto. Eh, lo hizo un poco más pequeño de todos modos

Cómo funciona:

] Resets the stack
 0{ Pushes a 0 and rotates the stack
    If the stack is empty, this initialises 0 as the counter
    Otherwise it adds an extra 0 to the stack and pushes the counter to the top
   i:0(?; Gets input and ends if it is EOF
         :"-"=?\ If the inputted character is a -
         p1+4f:< Put a - at cell (19, 1)
      .10        And skip to the end of this line

         :"+"=?\ Else if the inputted character is +
            ?10/ Generate either -1 or 1, depending on what was last put into cell (19,1)
                 The question mark represents cell (19,1), which is either + or -
         p3l     Put this number on (3, length of the stack)
.10p1+4f:<       Repeat the exact same code as with the -, except we put a + at cell (19,1)
         :" "=?\ Else if the character is a space
            @:$/ Create a copy of the counter
         .16     Skip to cell (1,6)
      g2         Get the cell (2, counter) (the  #=-.)
   ~$?           If that cell is a zero, pop it, leaving the initial space. 
                 Else pop the space, leaving the fetched character
        Else if the character is a | or a newline
        $3l$g+   Get the cell at (3, length of the stack) and add it to the counter
    For everything but the last else, we are at the end of the second line
       >.!0"#"$ Skip to the 35th instruction on the first line

 } Push the counter to the bottom of the stack
  :o Output the current character
    b(? If the character is smaller than 11 (a newline)
 ]          Skip the clear stack at the start of the line
 Repeat this until EOF
Jo King
fuente
0

C (gcc) , 190 179 bytes

-11 bytes gracias a ceilingcat

Falla si sizeof (int)> 9, pero luego puede consolarse con el hecho de que su computadora es del futuro.

l;*H,*h,d;f(S){h=H=calloc(l=index(S,10)-S,9);for(char*s=S;*s;s++)h=*s^10?h:H-1,d=*s-43?d:s!=S&s[-1]==45|s-S>l&s[~l]=='|'?-1:1,*h+=*s^45?0:d,h+=write(1,*s^32|*h>4?s:" #=-."+*h,1);}

Pruébalo en línea!

gastropner
fuente