Dobre algumas toalhas!

19

Ouvi em algum lugar que uma coisa que a tecnologia ainda não pode fazer é dobrar as toalhas 1 . Portanto, agora é seu trabalho provar essa afirmação falsa!

Dada uma string como entrada, composta de retângulos (toalhas), como a seguir, dobre cada toalha ao meio duas vezes. Por exemplo:

+------+    +------+        +--+
|      |    |      |        |  |
|      |    |      |        |  |
|      | -> +------+ ->     +--+
|      |    
|      |    
|      |    
+------+    

Observe que quando uma toalha é dobrada, ela é primeiro dobrada e depois da esquerda para a direita. Você programa deve imitar esse comportamento também. Observe também que, nos casos de teste, as toalhas permanecem no mesmo local, mas dobradas.

Regras:

  • Métodos padrão de entrada / saída.
  • Aplicam-se brechas padrão.
  • Entrada e saída devem ser como uma string.
  • No entanto, o resultado final é bom na saída, desde que as toalhas estejam no lugar certo, uma em relação à outra.
  • Você pode assumir que o comprimento de cada lado da toalha será sempre divisível por 2.
  • As toalhas passadas como entrada sempre serão retangulares.
  • As toalhas sempre serão separadas - no entanto, elas podem ser separadas por quantidades variáveis.

  • , o código mais curto ganha!

Casos de teste:

Input:
+------+
|      |
|      |
|      |
|      |
|      |
|      |
+------+
Output:
    +--+
    |  |
    |  |
    +--+




Input:
+--+ +--+ +--+
|  | |  | |  |
|  | |  | |  |
+--+ +--+ +--+

Output:
  ++   ++   ++
  ++   ++   ++


Input:
+----+
|    |
|    |
|    |
|    | ++
+----+ ++

Output:

   +-+
   | |
   +-+

        +

Input:
+--+
+--+     ++
         ||
         ||
         ++
Output:
  ++
          +
          +

1: Isso foi refutado por Geobits e Laikoni. No entanto, eu ouvi em algum lugar.

Camarada SparklePony
fonte
Por que o voto negativo? Se houver algo que possa ser consertado, por favor me diga.
precisa saber é o seguinte
@Laikoni parece que tecnologia pode fazer qualquer coisa :-)
Mr. Xcoder
@LuisMendo Editado, sempre haverá espaço entre as toalhas.
precisa saber é o seguinte
Toalhas dadas sempre alinham horizontalmente? Quero dizer, não haverá toalha embaixo da outra?
Morto Possum

Respostas:

5

Retina , 245 bytes

m1+`^((.)*(?!\+ )[+|]([- ])*[+|].*¶(?<-2>.)*)([+|][- ]*[+|])
$1$.4$* 
m+`^((.)*) ( *) (.*¶(?<-2>.)*)(?(2)(?!))\|\3\|
$1|$3|$4 $3 
m+`^((.)*)\|( *)\|(?=.*¶(?<-2>.)*(?(2)(?!)) )
$1+$.3$*-+
([+|])\1
 $1
(?!\+ )([+|])([- ])\2(\2*)\3\1
$.3$*   $1$3$1

Experimente online!

Nota: algumas linhas terminam em espaços. Explicação:

m1+`                    Repeatedly search from the beginning of input
    ^((.)*              Optional indentation
      (?!\+ )           Towel does not start with a plus and a space
      [+|]([- ])*[+|]   A row of towel
      .*¶               Rest of the line
      (?<-2>.)*         Some indentation on the next line
     )
     ([+|][- ]*[+|])    Another row of towel
$1$.4$*                 Replace the second row with blanks

Exclua todas as outras linhas de todas as toalhas (isso funciona porque todas as toalhas têm altura uniforme),

m+`             Repeatedly search
   ^((.)*)      Optional indentation
    ( *)        Find some space
    (.*¶        Rest of the line
     (?<-2>.)*) Matching indentation on the next line
    (?(2)(?!))  Ensure that the indentation exactly matches
    \|\3\|      Piece of towel
$1|$3|$4 $3     Swap the piece into the space above

desloque todos os pedaços de toalha destacados para cima,

m+`                 Repeatedly search
   ^((.)*)          Optional indentation
    \|( *)\|        Piece of towel
    (?=             Followed by
       .*¶          Rest of the line
       (?<-2>.)*    Matching indentation on the next line
       (?(2)(?!))   Ensure that the indentation exactly matches
        )           Nothing on the next line
$1+$.3$*-+          Change the piece into a towel bottom

e fixe o fundo das toalhas, dobrando-as efetivamente.

([+|])\1    Match a row of towel of width 2, which is just ++ or ||
 $1         Change the first column to a space, which folds it

Dobre as toalhas de largura 2 para a direita.

(?!\+ )     Towel does not start with a plus and a space
([+|])      Start with a + or a |
([- ])\2    Then at least two -s or spaces
(\2*)\3     Then an even number of -s or spaces
\1          Then another + or |
$.3$*       Replace the left half with spaces
$1$3$1      Replace the first character of the right half

Dobre as toalhas restantes para a direita.

Neil
fonte
Eu estaria interessado em uma explicação mais detalhada sobre como funciona o regex
Kritixi Lithos
@KritixiLithos Algo assim, ou havia algo específico?
21417 Neil
Sim obrigado. E estou correto ao assumir que <-2>é um grupo de balanceamento do .NET?
precisa saber é o seguinte
@KritixiLithos Utiliza-os: abre (?<-2>.)*a captura de cada vez, por isso não pode repetir mais vezes do (.)*que o fez, enquanto (?(2)(?!))verifica se não há capturas restantes, repetindo o mesmo número de vezes.
Neil
3

Oitava com Pacote de Imagens , 277 272 bytes

function x=f(x)
[i,j,v]=find(bwlabel(x-32));a=@(w)accumarray(v,w,[],@max);r=-a(-i);R=a(i);s=-a(-j);S=a(j);x(:)=32;for k =1:nnz(r)
u=(r(k)+R(k)-1)/2;v=(s(k)+S(k)+1)/2;p=v:S(k);x(r(k),p)=45;x(u,p)=45;q=r(k):u;x(q,v)=124;x(q,S(k))=124;x(u,[v S(k)])=43;x(r(k),[v S(k)])=43;end

Entrada e saída são matrizes de caracteres 2D.

Experimente online! Ou verifique todos os casos de teste: 1 , 2 , 3 , 4 . (Observe que endfunctionnos casos de teste só é necessário separar a função do código subsequente. Não é necessário se a função for salva em seu próprio arquivo.)

Versão legível e explicação

function x = f(x)
[i,j,v] = find(bwlabel(x-32)); % make background equal to 0 by subtracting 32.
% Then label each connected component (i.e. towel) with a unique integer
% Then get row indices (i) and column indices (j) of nonzero values (v)
a = @(w)accumarray(v,w,[],@max); % helper function. Gives the maximum of w for
% each group given by an integer label in v
r = -a(-i); % upper coordinate of each towel (minimum row index)
R = a(i); % lower coordinate of each towel (maximum row index)
s = -a(-j); % left coordinate of each towel (minimum column index)
S = a(j); % right coordinate of each towel (maximum column index)
x(:) = 32; % remove all towels: fill x with spaces
for k = 1:nnz(r) % for each original towel: create the new, folded towel 
    u = (r(k)+R(k)-1)/2; % new lower coordinate
    v = s(k)+S(k)+1)/2; % new left coordinate
    p = v:S(k); % column indices of horizontal edges
    x(r(k),p) = 45; % fill upper horizontal edge with '-'
    x(u,p) = 45; % fill lower horizontal edge with '-'
    q = r(k):u; % row indices of vertical edges
    x(q,v) = 124; % fill left vertical edge with '|'
    x(q,S(k)) = 124; % fill right vertical edge with '|'
    x(u,[v S(k)]) = 43; % fill lower corners with '+'
    x(r(k),[v S(k)]) = 43; % fill upper corners with '+'
end
Luis Mendo
fonte