Sequências binárias


23

Dado um número binário A como entrada com d> 1 dígitos, imprima um número binário B com dígitos d de acordo com as seguintes regras para encontrar o enésimo dígito de B:

  • O primeiro dígito de B é zero se o primeiro e o segundo dígitos de A forem iguais; caso contrário, é um.

  • Se 1 <n <d, então se os dígitos (n-1) enésimo e enésimo (n + 1) de A são iguais, o enésimo dígito de B é zero; caso contrário, é um.

  • O d-ésimo dígito de B é zero se os dígitos (d-1) e d-ésimo de A forem iguais; caso contrário, é um.

Regras

O formato de entrada / saída de sequência / lista está bom. Outra maneira permitida de entrada / saída é um número inteiro seguido pelo número de zeros anteriores (ou após o número de zeros anteriores).

Faça seu código o mais curto possível.

Casos de teste

00 -> 00
01 -> 11
11 -> 00
010111100111 -> 111100111100
1000 -> 1100
11111111 -> 00000000
01010101 -> 11111111
1100 -> 0110

Você deveria esperar mais 10 minutos e teria um chapéu . Bom desafio!
caird coinheringaahing

@cairdcoinheringaahing Lembro-me daqueles do ano passado ... oh, bem. :-(
0WJYxW9FMN

2
Caso de teste sugerido: 1100 -> 0110(os 2 primeiros dígitos da saída são sempre idênticos em todos os outros casos de teste; idem para os últimos 2 dígitos)
Arnauld 15/17

É bom ver que nenhum voto negativo foi lançado para esse desafio ou para suas 25 respostas. Muito bem, pessoal!
0WJYxW9FMN

Respostas:


7

Haskell, 59 58 54 bytes

f s=[1-0^(a-b+a-c)^2|a:b:c:_<-scanr(:)[last s]$s!!0:s]

Experimente online!

f s=                        -- input is a list of 0 and 1
          s!!0:s            -- prepend the first and append the last number of s to s
      scanr(:)[last s]      --   make a list of all inits of this list
     a:b:c:_<-              -- and keep those with at least 3 elements, called a, b and c
    1-0^(a-b+a-c)^2         -- some math to get 0 if they are equal or 1 otherwise

Edit: @ Ørjan Johansen salvou 4 bytes. Obrigado!


Se você não se importa de mudar para a saída de string, "0110"!!(a+b+c)salva um byte.
Laikoni

@Laikoni: Obrigado, mas eu também achei um byte na minha matemática.
nimi

2
[last s]pode ser movido para o scanrvalor inicial.
Ørjan Johansen

Uau. inits (com a importação); abs; if-then-else; mapa (pegue 3); zipWith; takeWhile (not.null); chunksOf (com a sua importação) ... tudo jogado fora! existe um hall da fama do golfe, em algum lugar, em algum lugar?
Will Ness

7

Geléia , 9 bytes

.ịṚjṡ3E€¬

Experimente online!

E / S como lista de dígitos.

Explicação:

.ịṚjṡ3E€¬
.ịṚ       Get first and last element
   j      Join the pair with the input list, thus making a list [first, first, second, ..., last, last]
    ṡ3    Take sublists of length 3
      E€  Check if each has all its elements equal
        ¬ Logical NOT each

Quase o mesmo com a minha tentativa : P
Leaky Nun

@LeakyNun é bastante comum para obter o código idêntico em desafios mais fáceis; p
Erik o Outgolfer

2
Você poderia adicionar uma explicação?
caird coinheringaahing

@cairdcoinheringaahing Você provavelmente entende o código , mas estou adicionando isso como uma referência para todos, até que Erik adicione um (se o fizer): .ị- Obtém o elemento no índice 0.5 . Como floor (0.5) ≠ ceil (0.5) , retorna os elementos nos índices 0 e 1 . A geléia é uma indexada, portanto, 0 realmente pega o último elemento. inverte o par (porque eles são retornados como last, first). Em seguida, jjunta o par na entrada e o ṡ3divide em fatias sobrepostas de comprimento 3. E€verifica (para cada lista) se todos os elementos são iguais e ¬nega logicamente cada um.
Sr. Xcoder

6

05AB1E , 6 bytes

¥0.ø¥Ā

A E / S está na forma de matrizes de bits.

Experimente online!

Como funciona

¥       Compute the forward differences of the input, yielding -1, 0, or 1 for each
        pair. Note that there cannot be two consecutive 1's or -1's.
 0.ø    Surround the resulting array with 0‘s.
    ¥   Take the forward differences again. [0, 0] (three consecutive equal 
        elements in the input) gets mapped to 0, all other pairs get mapped to a 
        non-zero value.
     Ā  Map non-zero values to 1.

5

05AB1E , 11 bytes

¬s¤)˜Œ3ù€Ë_

Experimente online! ou como um conjunto de testes

Explicação

¬             # get head of input
 s            # move it to the bottom of the stack
  ¤           # get the tail of the input
   )˜         # wrap in list ([head,input,tail])
     Œ3ù      # get sublists of length 3
        €Ë    # check each sublists for equality within the list
          _   # logical negation

5

Haskell , 66 61 59 bytes

g t@(x:s)=map("0110"!!)$z(x:t)$z t$s++[last s]
z=zipWith(+)

Experimente online! Input é uma lista de zeros e uns, output é uma string. Exemplo de uso: g [0,1,0,1,1,1,1,0,0,1,1,1]rendimentos "111100111100".


Solução anterior de 61 bytes:

g s=["0110"!!(a+b+c)|(a,b,c)<-zip3(s!!0:s)s$tail s++[last s]]

Experimente online!


4

J , 26 14 bytes

Crédito para a solução 05AB1E da Emigna

2=3#@=\{.,],{:

Experimente online!

Tentativa original

2|2#@="1@|:@,,.@i:@1|.!.2]

Experimente online!

             ,.@i:@1              -1, 0, 1
                    |.!.2]         shift filling with 2
  2         ,                      add a row of 2s on top
         |:                        transpose
   #@="1                           count unique elements in each row
2|                                 modulo 2

Maneira inteligente de fazer infixes de 3 no início e no final.
cole


2

Casca , 15 11 bytes

Ẋȯ¬EėSJ§e←→

Leva a entrada como uma lista, tente online! Ou tente este que usa cadeias de caracteres para E / S.

Explicação

Ẋ(¬Eė)SJ§e←→ -- implicit input, for example [1,0,0,0]
      SJ     -- join self with the following
        §e   --   listify the
                  first and
                  last element: [1,0]
             -- [1,1,0,0,0,0]
Ẋ(   )       -- with each triple (eg. 1 0 0) do the following:
    ė        --   listify: [1,1,0]
   E         --   are all equal: 0
  ¬          --   logical not: 1
             -- [1,1,0,0]

2

Geléia , 8 bytes

I0;;0In0

A E / S está na forma de matrizes de bits.

Experimente online!

Como funciona

I0;;0In0  Main link. Argument: A (bit array of length d)

I         Increments; compute the forward differences of all consecutive elements
          of A, yielding -1, 0, or 1 for each pair. Note that there cannot be
          two consecutive 1's or -1's.
 0;       Prepend a 0 to the differences.
   ;0     Append a 0 to the differences.
     I    Take the increments again. [0, 0] (three consecutive equal elements in A)
          gets mapped to 0, all other pairs get mapped to a non-zero value.
      n0  Perform not-equal comparison with 0, mapping non-zero values to 1.

Cheguei a uma alternativa engraçada, talvez você possa inspirar-se o seguinte:I0,0jI¬¬
Sr. Xcoder

2

JavaScript (ES6), 45 bytes

Recebe a entrada como uma matriz de caracteres. Retorna uma matriz de números inteiros.

a=>a.map((v,i)=>(i&&v^p)|((p=v)^(a[i+1]||v)))

Casos de teste

Comentado

a =>                  // given the input array a
  a.map((v, i) =>     // for each digit v at position i in a:
    (                 //   1st expression:
      i &&            //     if this is not the 1st digit:
           v ^ p      //       compute v XOR p (where p is the previous digit)
    ) | (             //   end of 1st expression; bitwise OR with the 2nd expression:
      (p = v) ^       //     update p and compute v XOR:
      (a[i + 1] ||    //       the next digit if it is defined
                   v) //       v otherwise (which has no effect, because v XOR v = 0)
    )                 //   end of 2nd expression
  )                   // end of map()


1

Gelatina , 16 bytes

ḣ2W;ṡ3$;ṫ-$W$E€¬

Experimente online!

Eu estava indo para o golfe, mas Erik já tem uma solução mais curta e a minha só traria a minha para mais perto da dele. Ainda estou jogando golfe, mas não atualizo a menos que possa vencê-lo ou encontrar uma idéia única.

Explicação

ḣ2W;ṡ3$;ṫ-$W$E€¬  Main Link
ḣ2                First 2 elements
  W               Wrapped into a list (depth 2)
   ;              Append
    ṡ3$           All overlapping blocks of 3 elements
       ;          Append
        ṫ-$W$     Last two elements wrapped into a list
             E€   Are they all equal? For each
               ¬  Vectorizing Logical NOT

Usando menos dinheiro e não é mais parecido com o de Erik
caird coinheringaahing

1

Perl 5 , 62 + 1 ( -n) = 63 bytes

s/^.|.$/$&$&/g;for$t(0..y///c-3){/.{$t}(...)/;print$1%111?1:0}

Experimente online!


Encurtado para 49 bytes: Experimente online!
Dada

Você deve publicá-lo como resposta. Não quero receber crédito pelo seu trabalho. Essa s;..$;construção no final é bacana. Vou ter que lembrar disso.
Xcali


1

Japt , 14 13 12 bytes

Parcialmente portado da solução Dennis 'Jelly. Entrada e saída são matrizes de dígitos.

ä- pT äaT mg

Economizou um byte graças à ETHproductions.

Tente


Explicação

Entrada implícita da matriz U. ä-obtém os deltas da matriz. pTempurra 0 para o final da matriz. äaTprimeiro adiciona outro 0 ao início da matriz antes de obter os deltas absolutos. mgmapeia os elementos da matriz retornando o sinal de cada elemento como -1 para números negativos, 0 para 0 ou 1 para números positivos.


Hmm, gostaria de saber se existe uma boa maneira de criar um método que coloque um item no início e no final de uma matriz, como na resposta 05AB1E. Eu acho que isso tornaria 1 byte menor ...
ETHproductions

@ETHproductions, para itens como o A.ä()que antecede seu segundo argumento, você pode adicionar um terceiro argumento que é anexado. Portanto, nesse caso, pT äaTpode ser äaTTuma economia de 2 bytes.
Shaggy


1

J, 32 bytes

B=:2&(+./\)@({.,],{:)@(2&(~:/\))

Como funciona:

B=:                              | Define the verb B
                       2&(~:/\)  | Put not-equals (~:) between adjacent elements of the array, making a new one
            ({.,],{:)            | Duplicate the first and last elements
   2&(+./\)                      | Put or (+.) between adjacent elements of the array

Eu deixei de fora alguns @s e parênteses, que apenas garantem que tudo corra bem.

Um exemplo passo a passo:

    2&(~:/\) 0 1 0 1 1 1 1 0 0 1 1 1
1 1 1 0 0 0 1 0 1 0 0

    ({.,],{:) 1 1 1 0 0 0 1 0 1 0 0
1 1 1 1 0 0 0 1 0 1 0 0 0

    2&(+./\) 1 1 1 1 0 0 0 1 0 1 0 0 0
1 1 1 1 0 0 1 1 1 1 0 0

    B 0 1 0 1 1 1 1 0 0 1 1 1
1 1 1 1 0 0 1 1 1 1 0 0

0

Retina , 35 bytes

(.)((?<=(?!\1)..)|(?=(?!\1).))?
$#2

Experimente online! O link inclui casos de teste. Explicação: O regex inicia combinando cada dígito de entrada por vez. Um grupo de captura tenta corresponder a um dígito diferente antes ou depois do dígito em consideração. O ?sufixo permite que a captura seja igual a 0 ou 1 vezes; $#2transforma isso no dígito de saída.


0

Pitão , 15 bytes

mtl{d.:++hQQeQ3

Experimente aqui!

Alternativamente:

  • mtl{d.:s+hQeBQ3.
  • .aM._M.+++Z.+QZ.

Anexa o primeiro elemento e o último, obtém todas as subseqüências sobrepostas de comprimento 3 e, finalmente, pega o número de elementos distintos em cada sub-lista e o diminui. Essa bagunça foi feita no celular à meia-noite, então eu não ficaria surpreso se houvesse alguns campos fáceis.


0

Gaia , 9 bytes

ọ0+0¤+ọ‼¦

Experimente online!

Explicação

ọ0 + 0¤ + ọ‼ ¦ ~ Um programa que aceita um argumento, uma lista de dígitos binários.

Del ~ Deltas.
 0+ ~ Anexe um 0.
   0 ~ Empurre um zero para a pilha.
    ¤ ~ Troque os dois principais argumentos da pilha.
     + ~ Concatenar (os últimos três bytes basicamente precedem um 0).
      Del ~ Deltas.
        ¦ ~ E para cada elemento N:
       Y ~ Rendimento 1 se N ≠ 0, caso contrário 0.

Gaia , 9 bytes

ọ0¤;]_ọ‼¦

Experimente online!


0

C , 309 bytes

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(int argc,char** argv){int d=strlen(argv[1]);char b[d + 1];char a[d + 1];strcpy(a, argv[1]);b[d]='\0';b[0]=a[0]==a[1]?'0':'1';for(int i=1;i<d-1;i++){b[i]=a[i]==a[i+1]&&a[i]==a[i - 1]?'0':'1';}b[d-1]=a[d-1]==a[d-2]?'0':'1';printf("%s\n",b);}

Não é exatamente um idioma adequado para o golfe, mas vale a pena responder. Experimente aqui !

Explicação

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char** argv) {
    /* Find the number of digits in number (taken in as a command line argument) */
    int d = strlen(argv[1]);

    /* d + 1 to account for d digits plus the null character */
    char b[d + 1];
    char a[d + 1];

    /* Saves having to type argv[1] every time we access it. */
    strcpy(a, argv[1]);

    /* Set the null character, so printf knows where our string ends. */
    b[d] = '\0';

    /* First condition */
    /* For those not familiar with ternary operators, this means b[0] is equal to '0' if a[0] equals a[1] and '1' if they aren't equal. */
    b[0] = a[0] == a[1] ? '0' : '1';

    /* Second condition */
    for(int i = 1; i < d - 1; i++) {
        b[i] = a[i] == a[i+1] && a[i] == a[i - 1] ? '0' : '1';
    }

    /* Third condition */
    b[d - 1] = a[d - 1] == a[d - 2] ? '0' : '1';

    /* Print the answer */
    printf("%s\n", b);
}

Bem-vindo ao PPCG :)
Shaggy

0

APL + WIN, 29 bytes

(↑b),(×3|3+/v),¯1↑b←×2|2+/v←⎕

Solicita a entrada na tela como um vetor de dígitos e gera um vetor de dígitos.

Explicação

b←×2|2+/v signum of 2 mod sum of successive pairs of elements

×3|3+/v signum of 3 mod sum of successive triples of elements

(↑b),...., ¯1↑b concatenate first and last elements of b for end conditions

0

SNOBOL4 (CSNOBOL4) , 273 bytes

	I =INPUT
	D =SIZE(I)
N	P =P + 1
	EQ(P,1)	:S(S)
	EQ(P,D)	:S(E)
	I POS(P - 2) LEN(2) . L
	I POS(P - 1) LEN(2) . R
T	Y =IDENT(L,R) Y 0	:S(C)
	Y =Y 1
C	EQ(P,D) :S(O)F(N)
S	I LEN(1) . L
	I POS(1) LEN(1) . R :(T)
E	I RPOS(2) LEN(1) . L
	I RPOS(1) LEN(1) . R :(T)
O	OUTPUT =Y
END

Experimente online!

	I =INPUT			;* read input
	D =SIZE(I)			;* get the string length
N	P =P + 1			;* iNcrement step; all variables initialize to 0/null string
	EQ(P,1)	:S(S)			;* if P == 1 goto S (for Start of string)
	EQ(P,D)	:S(E)			;* if P == D goto E (for End of string)
	I POS(P - 2) LEN(2) . L		;* otherwise get the first two characters starting at n-1
	I POS(P - 1) LEN(2) . R		;* and the first two starting at n
T	Y =IDENT(L,R) Y 0	:S(C)	;* Test if L and R are equal; if so, append 0 to Y and goto C
	Y =Y 1				;* otherwise, append 1
C	EQ(P,D) :S(O)F(N)		;* test if P==D, if so, goto O (for output), otherwise, goto N
S	I LEN(1) . L			;* if at start of string, L = first character
	I POS(1) LEN(1) . R :(T)	;* R = second character; goto T
E	I RPOS(2) LEN(1) . L		;* if at end of string, L = second to last character
	I RPOS(1) LEN(1) . R :(T)	;* R = last character; goto T
O	OUTPUT =Y			;* output
END

0

C (tcc) , 64 62 56 bytes

c,p;f(char*s){for(p=*s;c=*s;p=c)*s=p-c==c-(*++s?:c)^49;}

AE / S está na forma de cadeias. A função f modifica seus argumentos s no lugar.

Experimente online!


0

Lisp comum, 134 bytes

(lambda(a &aux(x(car a))(y(cadr a)))`(,#1=(if(= x y)0 1),@(loop for(x y z)on a while y if z collect(if(= x y z)0 1)else collect #1#)))

Experimente online!

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.